/* Variables */
:root {
    --acdc-red-main: #800000;
    --acdc-red-dark: #660000;
    --acdc-newsletter-bg: #fdf2f0;
    --acdc-footer-dark: #22252a;
    --acdc-footer-bottom: #191b1e;
    --acdc-text-muted: #a0a5ab;
}

/* 1. Newsletter Sekcija */
.acdc-newsletter-section {
    background-color: var(--acdc-newsletter-bg);
    padding: 35px 0;
    border-bottom: 1px solid #f3e1df;
}

.nl-icon-circle {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acdc-red-main);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.nl-title {
    color: #cb5343;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nl-desc {
    color: #666;
    font-size: 0.85rem;
}

.nl-input {
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    font-size: 0.85rem;
    padding: 8px 12px;
}

.nl-btn {
    background-color: var(--acdc-red-main);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 4px;
    transition: background 0.2s;
}

.nl-btn:hover {
    background-color: var(--acdc-red-dark);
    color: #ffffff;
}

.follow-text {
    font-size: 0.9rem;
    color: #333;
}

.follow-icons a {
    color: #333;
    margin-left: 12px;
    font-size: 1rem;
    transition: color 0.2s;
}

.follow-icons a:hover {
    color: var(--acdc-red-main);
}

/* 2. CTA Sekcija */
.acdc-cta-section {
    background-color: var(--acdc-red-main);
    color: #ffffff;
    padding: 30px 0;
}

.cta-icon-circle {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cta-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.cta-desc {
    font-size: 0.88rem;
    opacity: 0.9;
}

.cta-btn {
    color: var(--acdc-red-main);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
}

.cta-btn:hover {
    background-color: #f8f9fa;
    color: var(--acdc-red-dark);
}

/* 3. Main Footer */
.acdc-main-footer {
    background-color: var(--acdc-footer-dark);
    color: #d0d4dc;
    font-size: 0.82rem;
}

.footer-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.footer-about-text {
    color: var(--acdc-text-muted);
    line-height: 1.6;
}

.footer-menu li {
    margin-bottom: 6px;
}

.footer-menu a {
    color: var(--acdc-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: #ffffff;
}

.office-item {
    color: var(--acdc-text-muted);
    line-height: 1.4;
}

.office-item strong {
    color: #ffffff;
}

.footer-contact-list li {
    margin-bottom: 8px;
    color: var(--acdc-text-muted);
}

.footer-contact-list a {
    color: var(--acdc-text-muted);
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    margin-right: 6px;
    font-size: 0.75rem;
    text-decoration: none;
    transition: background 0.2s;
}

.footer-social-icons a:hover {
    background-color: var(--acdc-red-main);
}

.footer-bottom-bar {
    background-color: var(--acdc-footer-bottom);
    color: var(--acdc-text-muted);
    font-size: 0.78rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-bar a {
    color: var(--acdc-text-muted);
    text-decoration: none;
}

.footer-bottom-bar a:hover {
    color: #ffffff;
}