/* Contact / CTA Section Base */
.contact-cta-section {
    position: relative;
    padding-top: 10rem;
    overflow: hidden;
    background-color: var(--background-color);
    text-align: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Typography matching the image */
.cta-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}
.cta-title .accent-text {
    color: var(--accent-primary);
}

/* Green Pill Button */
.cta-button {
    display: inline-block;
    background-color: var(--accent-primary);
    color: #000;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 4rem;
}
.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(84, 227, 70, 0.4);
    color: #000;
}

/* Tag Pile Container */
.tags-pile-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 250px;
    margin: 0 auto;
}

/* Base Tag Styles */
.tag-pill {
    position: absolute;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
}
.tag-pill:hover {
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 50 !important;
}

/* Color Variants */
.tag-dark {
    background-color: #222522;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.05);
}
.tag-green {
    background-color: var(--accent-primary);
    color: #000000;
}

/* Chaotic Pile Layout (Hardcoded Positions) */
.tag-1 { left: 4%; bottom: 10px; transform: rotate(-10deg); z-index: 5; }
.tag-2 { left: 12%; bottom: 35px; transform: rotate(-20deg); z-index: 10; }
.tag-3 { left: 16%; bottom: 2px; transform: rotate(4deg); z-index: 6; }
.tag-4 { left: 25%; bottom: 25px; transform: rotate(18deg); z-index: 15; }
.tag-5 { left: 35%; bottom: 50px; transform: rotate(-12deg); z-index: 8; }
.tag-6 { left: 42%; bottom: 8px; transform: rotate(-30deg); z-index: 20; }
.tag-7 { left: 52%; bottom: 10px; transform: rotate(-5deg); z-index: 12; }
.tag-8 { left: 58%; bottom: 55px; transform: rotate(8deg); z-index: 9; }
.tag-9 { left: 66%; bottom: 12px; transform: rotate(-8deg); z-index: 18; }
.tag-10 { left: 74%; bottom: 65px; transform: rotate(-25deg); z-index: 7; }
.tag-11 { left: 80%; bottom: 25px; transform: rotate(12deg); z-index: 22; }
.tag-12 { left: 82%; bottom: -5px; transform: rotate(-4deg); z-index: 11; }
.tag-13 { left: 90%; bottom: 28px; transform: rotate(20deg); z-index: 16; }

/* Ticker Marquee Bottom Bar */
.scrolling-ticker-container {
    position: relative;
    background-color: var(--accent-primary);
    color: #000;
    width: 100%;
    overflow: hidden;
    padding: 1.2rem 0;
    z-index: 30;
    display: flex;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    padding-right: 1.5rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.3333%); }
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .cta-title { font-size: 3rem; }
    .tags-pile-container { height: 180px; overflow: hidden; }
    .tag-pill { padding: 0.5rem 1.2rem; font-size: 0.8rem; }
}

@media (max-width: 600px) {
    .cta-title { font-size: 2.2rem; }
    .scrolling-ticker-container { padding: 0.8rem 0; }
    .ticker-item { font-size: 1.4rem; padding-right: 1rem; }
}
