:root {
    --dark-footer-v2-primary: #0a0a0a;
    --dark-footer-v2-secondary: #1a1a1a;
    --dark-footer-v2-tertiary: #2a2a2a;
    --dark-footer-v2-accent: #3b82f6;
    --dark-footer-v2-accent-hover: #2563eb;
    --dark-footer-v2-text: #e5e7eb;
    --dark-footer-v2-text-muted: #9ca3af;
    --dark-footer-v2-border: #374151;
    --dark-footer-v2-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --dark-footer-v2-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dark-footer-v2 {
    background: var(--dark-footer-v2-gradient);
    color: var(--dark-footer-v2-text);
    position: relative;
    overflow: hidden;
}

/* HERO CONTACT SECTION */
.dark-footer-v2__hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid var(--dark-footer-v2-border);
}

.dark-footer-v2__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05), transparent 50%);
    pointer-events: none;
}

.dark-footer-v2__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dark-footer-v2__row {
    display: flex;
    align-items: center;
}

.dark-footer-v2__row--hero {
    justify-content: space-between;
}

.dark-footer-v2__row--main {
    align-items: flex-start;
    gap: 60px;
}

.dark-footer-v2__row--bottom {
    justify-content: space-between;
    align-items: center;
}

.dark-footer-v2__col-hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.dark-footer-v2__col-hero-cta {
    flex-shrink: 0;
}

.dark-footer-v2__contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.dark-footer-v2__contact-badge i {
    color: var(--dark-footer-v2-accent);
    font-size: 18px;
}

.dark-footer-v2__contact-badge span {
    color: var(--dark-footer-v2-text);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dark-footer-v2__hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.dark-footer-v2__hero-subtitle {
    font-size: 18px;
    color: var(--dark-footer-v2-text-muted);
    margin: 0;
}

.dark-footer-v2__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--dark-footer-v2-accent);
    color: white;
    padding: 20px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.dark-footer-v2__cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.dark-footer-v2__cta-button:hover::before {
    left: 100%;
}

.dark-footer-v2__cta-button:hover {
    background: var(--dark-footer-v2-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.dark-footer-v2__cta-button i {
    transition: transform 0.3s ease;
}

.dark-footer-v2__cta-button:hover i {
    transform: translateX(4px);
}

.dark-footer-v2__hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05), transparent 70%);
    pointer-events: none;
}

/* MAIN FOOTER CONTENT */
.dark-footer-v2__main {
    padding: 100px 0 60px;
    position: relative;
    z-index: 2;
}

.dark-footer-v2__col {
    flex: 1;
}

.dark-footer-v2__col--brand {
    max-width: 35%;
}

.dark-footer-v2__col--links {
    max-width: 15%;
}

.dark-footer-v2__col--contact {
    max-width: 25%;
}

.dark-footer-v2__col--newsletter {
    max-width: 25%;
}

.dark-footer-v2__brand-logo {
    margin-bottom: 32px;
}

.dark-footer-v2__logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1);
}

.dark-footer-v2__brand-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-footer-v2-text-muted);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .dark-footer-v2__col dark-footer-v2__col--newsletter {
        width: 400px;
        max-width: 100%;
    }

}


