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

:root {
    --primary-gold: #f9b450;
    --primary-gold-dark: #e5a03d;
    --primary-gold-light: #fac466;
    --secondary-black: #000000;
    --text-black: #000000;
    --text-gray: #4a4a4a;
    --text-light-gray: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gold-light: #fef8f0;
    --border-light: #e5e7eb;
    --border-gray: #d1d5db;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
}

main {
    margin-top: 0;
    padding-top: 0;
}

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

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

/* ===================================
   Navigation
   =================================== */
header {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background-color: var(--secondary-black);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--bg-white);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--bg-white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-gold);
}

.nav-cta {
    background-color: var(--primary-gold);
    color: var(--secondary-black);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background-color: var(--primary-gold-dark);
    transform: translateY(-1px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 12rem 2rem 8rem;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--bg-white);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--secondary-black);
    padding: 1rem 2.25rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 1rem 2.25rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid white;
    transition: background-color 0.2s, transform 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

/* ===================================
   Stats Section
   =================================== */
.stats {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===================================
   Value Proposition
   =================================== */
.value-prop {
    padding: 5rem 2rem;
}

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

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

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

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08),
                0 0 20px rgba(249, 180, 80, 0.1);
}

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

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

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

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

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===================================
   Services Section
   =================================== */
.services {
    position: relative;
    background-image: url('../images/services-background-new.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 2rem;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.services > * {
    position: relative;
    z-index: 2;
}

.services h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    font-weight: 700;
}

.services .section-intro {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.service-card {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid rgba(249, 180, 80, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(249, 180, 80, 0.3);
    border-color: var(--primary-gold);
    background-color: rgba(255, 255, 255, 1);
}

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

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

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

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

/* ===================================
   CTA Sections
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-black) 0%, #1a1a1a 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--bg-white);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.final-cta {
    background-color: var(--bg-gold-light);
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-black);
    font-weight: 700;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

/* ===================================
   Transactions Section
   =================================== */
.transactions {
    padding: 5rem 2rem;
}

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

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

.transaction-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.transaction-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    height: 100%;
}

.transaction-card-link:hover .transaction-card,
.transaction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-gold);
}

.transaction-image {
    background: var(--bg-white);
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.transaction-content {
    padding: 2rem;
}

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

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

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

.transaction-value {
    color: var(--primary-gold);
    font-size: 1.75rem;
    font-weight: 700;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

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

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

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 3px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

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

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 8px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-gold), #e5a03d);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial-card:hover::after {
    opacity: 0;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    font-style: italic;
}

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

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-black);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

/* ===================================
   FAQ Section
   =================================== */
.faq {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-black);
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===================================
   Footer
   =================================== */
footer {
    background-color: var(--secondary-black);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.mobile-menu-toggle:hover {
    color: var(--primary-gold);
}

/* Mobile Menu Close Button - Hidden on Desktop */
.mobile-menu-close {
    display: none;
}

/* Mobile Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        background: var(--secondary-black);
        flex-direction: column;
        gap: 0;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }

    .nav-cta {
        display: none;
    }

    /* Close button in mobile menu */
    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        color: var(--text-white);
        font-size: 2rem;
        cursor: pointer;
        padding: 0.5rem;
        line-height: 1;
    }

    .mobile-menu-close:hover {
        color: var(--primary-gold);
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
        background-attachment: scroll;
    }

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

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

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .stat-number {
        font-size: 2.75rem;
    }

    .value-prop h2,
    .services h2,
    .transactions h2,
    .testimonials h2,
    .faq h2 {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .services {
        background-attachment: scroll;
        padding: 4rem 1.5rem;
    }

    .services::before {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 0, 0, 0.85) 100%);
    }

    .value-grid,
    .services-grid,
    .transactions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2,
    .final-cta h2 {
        font-size: 2rem;
    }

    .cta-section p,
    .final-cta p {
        font-size: 1.05rem;
    }

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

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 7rem 1.5rem 3rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .service-card,
    .transaction-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ===================================
   Logo Styles
   =================================== */
.logo img {
    max-height: 50px;
    height: auto;
    width: auto;
    display: block;
    transition: opacity 0.2s;
    object-fit: contain;
}

.logo img:hover {
    opacity: 0.8;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo img {
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 40px;
    }
}

/* ===================================
   Testimonial Pulse Animation
   =================================== */
@keyframes subtlePulse {
    0% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12),
                    0 0 12px rgba(249, 180, 80, 0.1);
    }
    100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
}

.testimonial-card.in-view {
    animation: subtlePulse 3s ease-in-out infinite;
}

.testimonial-card.in-view:hover {
    animation: none;
}

/* Pause animation on hover */
.testimonial-card:hover {
    animation-play-state: paused;
}

/* ===================================
   Recent Transactions Section (Homepage)
   =================================== */

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

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

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

.recent-transaction-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    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;
    text-decoration: none;
    color: inherit;
}

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

.recent-transaction-image {
    background: linear-gradient(135deg, var(--secondary-black) 0%, #333333 100%);
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.recent-transaction-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

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

.transaction-brief {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    flex: 1;
}

.recent-transaction-content .transaction-value {
    color: var(--primary-gold);
    font-size: 1.75rem;
    font-weight: 700;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .recent-transactions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .recent-transactions {
        padding: 4rem 1.5rem;
    }

    .recent-transactions h2 {
        font-size: 2.25rem;
    }

    .recent-transactions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .recent-transaction-content {
        padding: 1.25rem;
    }

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

    .recent-transaction-content .transaction-value {
        font-size: 1.5rem;
    }
}

/* ===================================
   CTA Valuation Section
   =================================== */

.cta-valuation {
    background: #333333;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-valuation-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.gold-accent-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 0 auto 2rem;
}

.cta-valuation h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-valuation-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 180, 80, 0.5);
}

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

.phone-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

.phone-number {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.phone-number:hover {
    color: var(--primary-gold-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-valuation {
        padding: 4rem 1.5rem;
    }

    .cta-valuation h2 {
        font-size: 2.25rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .btn-cta-large {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 350px;
    }

    .phone-number {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .cta-valuation h2 {
        font-size: 1.85rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .btn-cta-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .phone-number {
        font-size: 1.1rem;
    }
}
