/* ===================================
   Landing Page Specific Styles
   =================================== */

/* Logo Link */
.logo a {
    text-decoration: none;
    color: inherit;
}

/* Process Section */
.process-section {
    background-color: var(--bg-white);
    padding: 5rem 2rem;
}

.process-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-black);
    font-weight: 700;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-step {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--secondary-black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    color: var(--text-black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.process-step ul {
    list-style: none;
    padding: 0;
}

.process-step ul li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.process-step ul li::before {
    content: '✓';
    color: var(--primary-gold);
    font-weight: 600;
    position: absolute;
    left: 0;
}

/* Leaseback Explanation Cards */
.leaseback-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.explanation-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-number {
    background: var(--primary-gold);
    color: var(--secondary-black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.explanation-card h3 {
    color: var(--text-black);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.explanation-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Option Pros */
.option-pros {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.option-pros strong {
    color: var(--text-black);
}

/* Mistake Cards */
.mistake-card {
    background-color: #fff5f5;
    border: 1px solid #feb2b2;
}

.mistake-card .value-icon {
    color: #c53030;
}

.mistake-card h3 {
    color: #c53030;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.form-info h2 {
    font-size: 2.25rem;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-info p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.form-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.check-icon {
    background-color: var(--primary-gold);
    color: var(--secondary-black);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.form-note {
    color: var(--text-gray);
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 2rem;
}

.form-wrapper {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-black);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(249, 180, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    margin-top: 0.5rem;
}

/* ===================================
   About Page Styles
   =================================== */

.about-content {
    max-width: 900px;
    margin: 3rem auto 0;
}

.about-text h3 {
    color: var(--text-black);
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.about-text h3:first-child {
    margin-top: 0;
}

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

/* Team Section */
.team-section {
    background-color: var(--bg-white);
    padding: 5rem 2rem;
}

.team-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-black);
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    display: flex;
    gap: 2rem;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.member-photo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid var(--primary-gold);
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-black);
    font-size: 3rem;
    font-weight: 700;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    color: var(--text-black);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-title {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-location {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-badge {
    background-color: var(--primary-gold);
    color: var(--secondary-black);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.member-contact {
    display: inline-block;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-gold);
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
}

.member-contact:hover {
    background-color: var(--primary-gold);
    color: var(--secondary-black);
}

/* ===================================
   National Presence Map Styles
   =================================== */
.national-presence-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.national-presence-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-black);
    font-weight: 700;
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.usa-map {
    width: 100%;
    height: auto;
    display: block;
}

.usa-outline {
    transition: fill 0.3s ease;
}

.office-marker {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.office-marker:hover {
    transform: scale(1.1);
}

.marker-circle {
    transition: r 0.3s ease, fill 0.3s ease;
}

.office-marker:hover .marker-circle {
    r: 14;
    fill: var(--primary-gold-dark);
}

.marker-pulse {
    animation: pulse 2s infinite;
    opacity: 0;
}

.office-marker:hover .marker-pulse {
    animation: none;
    opacity: 0;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.office-tooltip {
    position: absolute;
    background: var(--bg-white);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    padding: 1.25rem;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    pointer-events: none;
}

.office-marker:hover ~ .office-tooltip[id="tooltip-vail"],
.office-marker[data-office="vail"]:hover ~ #tooltip-vail {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    left: 15%;
    top: 25%;
}

.office-marker[data-office="atlanta"]:hover ~ #tooltip-atlanta {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    right: 15%;
    top: 45%;
}

.office-marker[data-office="sandiego"]:hover ~ #tooltip-sandiego {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    left: 5%;
    bottom: 20%;
}

.office-marker[data-office="charlotte"]:hover ~ #tooltip-charlotte {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    right: 12%;
    top: 40%;
}

.office-tooltip h4 {
    color: var(--primary-gold);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.office-team {
    margin-bottom: 0.5rem;
    color: var(--text-black);
    font-size: 0.95rem;
    line-height: 1.5;
}

.office-team strong {
    color: var(--text-black);
    font-weight: 600;
}

.office-phone {
    margin: 0.75rem 0;
    font-size: 0.9rem;
}

.office-phone a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.office-phone a:hover {
    color: var(--primary-gold);
}

.tooltip-contact {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.tooltip-contact:hover {
    color: var(--primary-gold-dark);
}

.national-coverage-note {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    border: 2px solid var(--primary-gold);
}

.national-coverage-note p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Map Styles */
@media (max-width: 768px) {
    .national-presence-section {
        padding: 4rem 1.5rem;
    }

    .national-presence-section h2 {
        font-size: 2rem;
    }

    .map-container {
        padding: 1rem;
    }

    .office-tooltip {
        min-width: 240px;
        padding: 1rem;
    }

    .office-marker[data-office="vail"]:hover ~ #tooltip-vail {
        left: 5%;
        top: 15%;
    }

    .office-marker[data-office="atlanta"]:hover ~ #tooltip-atlanta {
        right: 5%;
        top: 40%;
    }

    .office-marker[data-office="sandiego"]:hover ~ #tooltip-sandiego {
        left: 5%;
        bottom: 15%;
    }

    .office-marker[data-office="charlotte"]:hover ~ #tooltip-charlotte {
        right: 5%;
        top: 35%;
    }
}

/* ===================================
   Services Page Styles
   =================================== */

.service-detail {
    padding: 5rem 2rem;
}

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

.detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.detail-header h2 {
    font-size: 2.75rem;
    color: var(--text-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.detail-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-main h3 {
    color: var(--text-black);
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.detail-main h3:first-child {
    margin-top: 0;
}

.detail-main p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.detail-list li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.detail-list li::before {
    content: '•';
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.25rem;
}

.detail-list li strong {
    color: var(--text-black);
}

.detail-cta {
    margin-top: 2.5rem;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.service-detail.alt-bg .sidebar-box {
    background-color: var(--bg-white);
}

.sidebar-box h4 {
    color: var(--text-black);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.sidebar-box p {
    color: var(--text-gray);
    font-weight: 600;
    margin: 0;
}

/* ===================================
   Contact Page Styles
   =================================== */

.locations-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.locations-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-black);
    font-weight: 700;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: center;
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    color: var(--text-black);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.location-details {
    text-align: left;
    margin-bottom: 1.5rem;
}

.location-details p {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.location-details a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.location-details a:hover {
    text-decoration: underline;
}

.location-address {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.location-team {
    color: var(--text-gray);
    font-size: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.national-service {
    background-color: var(--secondary-black);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.national-service p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.national-service strong {
    color: var(--primary-gold);
}

.contact-methods {
    margin: 2rem 0;
}

.contact-methods h3 {
    color: var(--text-black);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-method {
    margin-bottom: 1.5rem;
}

.contact-method strong {
    color: var(--text-black);
}

.phone-link,
.email-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.phone-link:hover,
.email-link:hover {
    text-decoration: underline;
}

.quick-actions {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.quick-actions h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-black);
    font-weight: 700;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.action-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: center;
}

.action-card h3 {
    color: var(--text-black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.action-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ===================================
   Responsive Adjustments
   =================================== */

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .detail-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .detail-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-box {
        flex: 1;
        min-width: 200px;
    }
}

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

    .member-photo {
        margin: 0 auto;
        width: 150px;
        height: 150px;
    }

    .member-photo img {
        width: 100%;
        height: 100%;
    }

    .photo-placeholder {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }

    .member-stats {
        justify-content: center;
    }

    .locations-grid,
    .actions-grid {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        flex-direction: column;
    }

    .service-detail,
    .locations-section,
    .quick-actions {
        padding: 3rem 1.5rem;
    }

    .detail-header h2,
    .locations-section h2,
    .quick-actions h2,
    .team-section h2 {
        font-size: 2rem;
    }

    .form-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 480px) {
    .team-member {
        padding: 1.5rem;
    }

    .member-photo {
        width: 120px;
        height: 120px;
    }

    .member-photo img {
        width: 100%;
        height: 100%;
    }

    .photo-placeholder {
        width: 120px;
        height: 120px;
        font-size: 2rem;
    }

    .member-info h3 {
        font-size: 1.5rem;
    }

    .location-card,
    .action-card {
        padding: 2rem;
    }

    .form-wrapper {
        padding: 2rem;
    }

    .process-step {
        padding: 2rem;
    }
}

/* ===================================
   Resources Page Styles
   =================================== */

/* Search Section */
.search-section {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
}

.search-bar {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.search-bar input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(249, 180, 80, 0.1);
}

.search-button {
    padding: 1rem 2rem;
    background-color: var(--primary-gold);
    color: var(--secondary-black);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-button:hover {
    background-color: var(--primary-gold-dark);
}

/* Categories Section */
.categories-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.categories-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-black);
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 20px rgba(249, 180, 80, 0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.category-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-gold);
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon svg {
    transform: scale(1.1);
}

.category-card h3 {
    color: var(--text-black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.category-link:hover {
    color: var(--primary-gold-dark);
}

/* Featured Articles */
.featured-articles {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.featured-articles h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-black);
    font-weight: 700;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.article-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.article-image {
    height: 200px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-date::before {
    content: '📅 ';
}

.article-reading-time::before {
    content: '⏱ ';
}

.article-content h3 {
    margin-bottom: 1rem;
}

.article-content h3 a {
    color: var(--text-black);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.2s;
}

.article-content h3 a:hover {
    color: var(--primary-gold);
}

.article-content > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.article-author strong {
    display: block;
    color: var(--text-black);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.article-author span {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.read-more {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

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

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 2rem;
    background-color: var(--secondary-black);
    color: white;
}

.newsletter-content {
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-text {
    text-align: center;
    margin-bottom: 2.5rem;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: border-color 0.2s, background-color 0.2s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 1rem 2.5rem;
    white-space: nowrap;
}

.newsletter-privacy {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ===================================
   Blog Article Styles
   =================================== */

.blog-article {
    background-color: var(--bg-white);
}

/* Article Header */
.article-header {
    background-color: var(--secondary-black);
    color: white;
    padding: 4rem 2rem 3rem;
}

.breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--primary-gold);
}

.article-category {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--secondary-black);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 900px;
}

.article-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-details strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.author-details span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.article-info {
    display: flex;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Article Content */
.article-content {
    padding: 5rem 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.article-body .lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-black);
    font-weight: 500;
    margin-bottom: 2rem;
}

.article-body h2 {
    font-size: 2.25rem;
    color: var(--text-black);
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 3px solid var(--primary-gold);
}

.article-body h2:first-of-type {
    margin-top: 2rem;
}

.article-body h3 {
    font-size: 1.75rem;
    color: var(--text-black);
    font-weight: 600;
    margin: 2.5rem 0 1rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.article-body strong {
    color: var(--text-black);
    font-weight: 600;
}

.article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-body figure {
    margin: 2rem 0;
}

.article-body figure img {
    margin: 0 auto 1rem;
}

.article-body figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light-gray);
    font-style: italic;
}

/* Special boxes */
.formula-box,
.calculation-example,
.example-box {
    background-color: var(--bg-gold-light);
    border-left: 4px solid var(--primary-gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.formula-box strong {
    color: var(--secondary-black);
    font-size: 1.15rem;
}

/* Article CTA */
.article-cta {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-gold);
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: var(--text-black);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.article-cta p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Related Articles */
.related-articles {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 4rem;
}

.related-articles h3 {
    font-size: 1.75rem;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.related-card h4 a {
    color: var(--text-black);
    text-decoration: none;
    transition: color 0.2s;
}

.related-card h4 a:hover {
    color: var(--primary-gold);
}

.related-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Responsive Adjustments for New Sections
   =================================== */

/* Tablet - 2 columns */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
    }

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

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

    .article-header h1 {
        font-size: 2rem;
    }

    .article-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-body {
        font-size: 1.05rem;
    }

    .article-body h2 {
        font-size: 1.75rem;
    }

    .article-body h3 {
        font-size: 1.4rem;
    }

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

    .newsletter-text h2 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 3rem 1.5rem 2rem;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-content {
        padding: 3rem 1.5rem;
    }

    .formula-box,
    .calculation-example,
    .example-box {
        padding: 1rem 1.5rem;
    }

    .article-cta,
    .related-articles {
        padding: 2rem;
    }
}

/* ===================================
   Team Member Profile Pages
   =================================== */

.back-link {
    margin-bottom: 1.5rem;
}

.back-link a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.back-link a:hover {
    color: var(--primary-gold);
}

.team-profile-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.profile-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.profile-photo {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.profile-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.profile-contact {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.profile-contact h3 {
    font-size: 1.4rem;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--primary-gold-dark);
}

.profile-stats {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.profile-stats h3 {
    font-size: 1.4rem;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.profile-stats .stat-badge {
    display: block;
    margin-bottom: 1rem;
    text-align: center;
}

.profile-main {
    min-width: 0;
}

.profile-main h2 {
    font-size: 2.25rem;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.profile-main h3 {
    font-size: 1.75rem;
    color: var(--text-black);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.profile-main h4 {
    font-size: 1.25rem;
    color: var(--text-black);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.profile-main p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.profile-main .lead {
    font-size: 1.2rem;
    color: var(--text-black);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.expertise-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.expertise-item h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.expertise-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.benefits-list li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li:before {
    content: "•";
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.transactions-highlight {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.transaction-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

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

.transaction-item strong {
    display: block;
    color: var(--text-black);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.transaction-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

/* Make team cards clickable */
.team-member {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Responsive Team Profile Pages */
@media (max-width: 1024px) {
    .team-profile-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-sidebar {
        position: static;
    }

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

@media (max-width: 768px) {
    .profile-main h2 {
        font-size: 1.85rem;
    }

    .profile-main h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}
/* ===================================
   Dynamic About Page Styles
   =================================== */

.about-two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem 0;
}

.about-column {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-icon-header.centered {
    justify-content: center;
}

.about-icon-header svg {
    stroke: var(--primary-gold);
    flex-shrink: 0;
}

.about-icon-header h3 {
    margin: 0;
    color: var(--text-black);
    font-size: 1.75rem;
    font-weight: 600;
}

.about-highlight-box {
    background: linear-gradient(135deg, rgba(249, 180, 80, 0.1) 0%, rgba(249, 180, 80, 0.05) 100%);
    border-left: 4px solid var(--primary-gold);
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 4px;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.7;
}

.about-full-width-highlight {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.about-full-width-highlight p {
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-stats-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.inline-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.inline-stat strong {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.inline-stat span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* About Page - Content Sidebar Layout */
.about-content-sidebar-layout {
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 3rem;
    margin: 3rem 0;
}

.about-main-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-content-section {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-content-section p {
    line-height: 1.8;
    color: var(--text-gray);
}

/* Featured Transaction Sidebar Card */
.about-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.featured-transaction-card {
    background: var(--bg-white);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(249, 180, 80, 0.15);
}

.featured-transaction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(249, 180, 80, 0.25);
}

.transaction-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gold);
    color: var(--secondary-black);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.featured-transaction-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-black) 0%, #333333 100%);
}

.featured-transaction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.featured-transaction-content {
    padding: 2rem;
}

.featured-transaction-content h4 {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.featured-transaction-content h3 {
    color: var(--text-black);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.transaction-location {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.transaction-value-large {
    color: var(--primary-gold);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    line-height: 1;
}

.transaction-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--secondary-black);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 180, 80, 0.25);
}

.btn-view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 180, 80, 0.4);
}

/* Responsive styles for About page enhancements */
@media (max-width: 992px) {
    .about-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content-sidebar-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-sidebar {
        position: static;
    }

    .about-stats-inline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .transaction-value-large {
        font-size: 2rem;
    }
}

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

    .about-icon-header.centered {
        flex-direction: column;
    }

    .about-icon-header h3 {
        font-size: 1.5rem;
    }

    .inline-stat strong {
        font-size: 2rem;
    }

    .about-content-section {
        padding: 2rem;
    }

    .featured-transaction-image {
        height: 180px;
    }

    .featured-transaction-content {
        padding: 1.5rem;
    }

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

    .transaction-value-large {
        font-size: 1.75rem;
    }
}

/* ===================================
   Transaction Detail Pages
   =================================== */

.property-type-badge {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--secondary-black);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.back-link {
    margin-bottom: 1.5rem;
}

.back-link a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link a:hover {
    color: var(--primary-gold-dark);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}

/* ===================================
   Icon-based Article Cards
   =================================== */

.article-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 2.5rem;
    border: 2px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1),
                0 0 20px rgba(249, 180, 80, 0.15);
    border-color: var(--primary-gold);
}

.article-icon {
    margin-bottom: 1.5rem;
}

.article-icon svg {
    stroke: var(--primary-gold);
    transition: transform 0.3s ease, stroke 0.3s ease;
}

.article-card:hover .article-icon svg {
    transform: scale(1.1);
    stroke: var(--primary-gold-dark);
}

.article-badge {
    display: inline-block;
    background-color: rgba(249, 180, 80, 0.1);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.article-content h3 {
    color: var(--text-black);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.article-content h3 a {
    color: var(--text-black);
    text-decoration: none;
    transition: color 0.2s;
}

.article-content h3 a:hover {
    color: var(--primary-gold);
}

.article-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.article-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.article-reading-time {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 600;
}

.article-author {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.read-more {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
    white-space: nowrap;
}

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

@media (max-width: 768px) {
    .article-card {
        padding: 2rem;
    }

    .article-icon svg {
        width: 60px;
        height: 60px;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }

    .article-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .article-meta {
        align-items: center;
    }
}

/* ===================================
   Team Contact Section (Transaction Pages)
   =================================== */

.team-contact-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    border-top: 1px solid var(--border-light);
}

.team-contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-contact-section .section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-contact-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 2.5rem;
    border: 2px solid var(--border-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.team-contact-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 4px 16px rgba(249, 180, 80, 0.2);
}

.team-contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-contact-info h3 {
    font-size: 1.4rem;
    color: var(--text-black);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-contact-title {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-phone,
.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    justify-content: center;
}

.contact-phone svg,
.contact-email svg {
    stroke: var(--primary-gold);
    flex-shrink: 0;
}

.contact-phone:hover,
.contact-email:hover {
    color: var(--primary-gold);
}

.btn-contact-team {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--secondary-black);
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 180, 80, 0.25);
}

.btn-contact-team:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 180, 80, 0.4);
}

@media (max-width: 1024px) {
    .team-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .team-contact-section {
        padding: 4rem 1.5rem;
    }

    .team-contact-section h2 {
        font-size: 2rem;
    }

    .team-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-contact-card {
        padding: 2rem;
    }
}

/* ===================================
   Sidebar Images (Services Page)
   =================================== */

.sidebar-image {
    margin-top: 0.5rem;
}

.sidebar-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 2px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-weight: 600;
    text-align: center;
}

/* Featured Transaction Link Styles */
.featured-transaction-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.featured-transaction-link .sidebar-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.featured-transaction-link:hover .sidebar-box {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-gold);
}

.featured-transaction-link:hover .sidebar-image img {
    transform: scale(1.05);
    border-color: var(--primary-gold);
}

.featured-transaction-link:hover .image-caption {
    color: var(--primary-gold);
}

/* Combined Offices Section - New 60/40 Layout */
.combined-offices {
    background-color: var(--bg-light);
}

.offices-layout {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    align-items: flex-start;
}

.map-wrapper {
    flex: 0 0 60%;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(249, 180, 80, 0.2);
}

.map-container {
    position: relative;
    width: 100%;
}

.offices-cards {
    flex: 0 0 37%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card.compact {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card.compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(249, 180, 80, 0.15);
    border-color: var(--primary-gold);
}

.location-card.compact h3 {
    color: var(--text-black);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.location-card.compact .location-details {
    margin-bottom: 0;
}

.team-member {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-link {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.contact-link a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.contact-link a:hover {
    text-decoration: underline;
    color: var(--primary-gold-dark);
}

.national-service {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    color: white;
}

.national-service strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.national-service .service-note {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

/* City Labels on Map */
.city-label {
    pointer-events: none;
    user-select: none;
}

/* Enhanced Marker Hover Effects with Gold Glow */
.office-marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.office-marker:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px rgba(249, 180, 80, 0.8));
}

.office-marker:hover .marker-circle {
    fill: var(--primary-gold-dark);
    stroke-width: 4;
}

.office-marker .marker-circle {
    transition: all 0.3s ease;
}

.office-marker .marker-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.3);
    }
    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}

.office-marker:hover .marker-pulse {
    animation: none;
    opacity: 0;
}

/* Gold Accent on Map Container */
.map-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(249, 180, 80, 0.3), rgba(249, 180, 80, 0.1));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-wrapper:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .offices-layout {
        flex-direction: column;
    }
    
    .map-wrapper,
    .offices-cards {
        flex: 1 1 100%;
    }
    
    .offices-cards {
        gap: 1rem;
    }
    
    .location-card.compact {
        padding: 1.25rem;
    }
}

@media (max-width: 640px) {
    .combined-offices {
        padding: 3rem 1rem;
    }
    
    .offices-layout {
        gap: 2rem;
    }
    
    .map-wrapper {
        padding: 1.5rem;
    }
    
    .location-card.compact h3 {
        font-size: 1.1rem;
    }
    
    .city-label {
        font-size: 13px !important;
    }
}


/* Offices Section - Redesigned with Headshots */
.offices-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.offices-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-black);
    font-weight: 700;
}

.section-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Office Cards Grid - 4 across */
.office-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Compact Office Card with Headshot */
.office-card-compact {
    background: var(--bg-white);
    padding: 1.75rem 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.office-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(249, 180, 80, 0.15);
    border-color: var(--primary-gold);
}

.team-headshot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-gold);
    display: block;
}

.office-card-compact h3 {
    color: var(--text-black);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-name {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-weight: 500;
}

.office-contact {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.office-contact a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.office-contact a:hover {
    color: var(--primary-gold-dark);
    text-decoration: underline;
}

/* Full-Width Map Section */
.map-section {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    max-width: 1200px;
    margin: 0 auto;
}

.usa-map-static {
    width: 100%;
    height: auto;
    display: block;
}

/* Simplified static map - no animations */
.usa-map-static circle {
    transition: none;
}

.usa-map-static text {
    pointer-events: none;
    user-select: none;
}

.map-caption {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .office-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .offices-section {
        padding: 3rem 1rem;
    }
    
    .office-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .office-card-compact {
        padding: 1.5rem 1.25rem;
    }
    
    .team-headshot {
        width: 70px;
        height: 70px;
    }
    
    .map-section {
        padding: 1.5rem;
    }
    
    .usa-map-static text {
        font-size: 14px !important;
    }
}


/* ===================================
   Simplified Offices Section (No Headshots)
   =================================== */

.offices-section-simple {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.offices-section-simple h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-black);
    font-weight: 700;
}

.office-cards-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.office-card-simple {
    background: var(--bg-white);
    padding: 0;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.office-card-simple:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(249, 180, 80, 0.2);
    border-color: var(--primary-gold);
}

.office-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

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

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

.office-card-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.office-card-simple h3 {
    color: var(--text-black);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.office-phone,
.office-email {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.office-phone a,
.office-email a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.office-phone a:hover,
.office-email a:hover {
    color: var(--primary-gold-dark);
    text-decoration: underline;
}

/* Full-Width Map Section */
.map-section-fullwidth {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design for Office Cards */
@media (max-width: 1024px) {
    .office-cards-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .office-image {
        height: 200px;
    }
}

@media (max-width: 640px) {
    .offices-section-simple {
        padding: 3rem 1rem;
    }

    .office-cards-simple {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .office-card-content {
        padding: 1.5rem 1.25rem;
    }

    .office-image {
        height: 180px;
    }

    .office-card-simple h3 {
        font-size: 1.3rem;
    }
    
    .map-section-fullwidth {
        padding: 1.5rem;
    }
    
    .usa-map-static text {
        font-size: 14px !important;
    }
}



/* ===================================
   Featured Transactions Grid (3x1)
   =================================== */
.featured-transactions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .featured-transactions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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