﻿

:root {
    --bg-light: #f1f1ef;
    --bg-dark: #0b0d17;
    --text-on-light: #050505;
    
    --text-on-dark: #ffffff;
    --accent-blue: #2563eb;
    
    --accent-glow: rgba(11, 13, 23, 0.5);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-on-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    
    max-width: 100%;
    word-wrap: break-word;
}


a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}


.blog-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}


.text-gradient {
    background: linear-gradient(135deg, #2563eb, #0b0d17);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background-color: #00ff41;
    color: #0b0d17;
    border: 2px solid #00ff41;
}

.btn-primary:hover {
    background-color: transparent;
    color: #00ff41;
    border-color: #00ff41;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);

}

.btn-outline {
    background: transparent;
    border: 2px solid var(--bg-dark);
    color: var(--bg-dark);
}

.btn-outline:hover {
    background-color: var(--bg-dark);
    color: white;
}

.btn-white-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-white-outline:hover {
    background: white;
    color: var(--bg-dark);
}



header {
    background-color: var(--bg-dark);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background-color: var(--bg-dark);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo img {
    max-height: 60px;
    
    width: auto;
    
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 700;
    
    color: white;
    font-size: 1rem;
    position: relative;
    opacity: 0.9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #00ff41;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #00ff41;
    opacity: 1;
}

.nav-links a:hover::after {
    width: 100%;
}


header .btn-primary {
    background-color: #00ff41;
    color: var(--bg-dark);
    border-color: #00ff41;
}

header .btn-primary:hover {
    background-color: transparent;
    color: #00ff41;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

header .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

header .btn-outline:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
}


.hero {
    background-color: var(--bg-dark);
    color: var(--text-on-dark);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.2), transparent 40%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #00ff41;
    
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(219, 67, 19, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}


.stats-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}


.campaign-section {
    background-color: #0b0d17;
    padding: 80px 0;
    position: relative;
}

.campaign-box {
    background: white;
    border-radius: 24px;
    padding: 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-on-light);
}

.checklist.aligned-start li {
    align-items: flex-start;
}

.checklist i {
    color: var(--accent-blue);
    font-size: 1.2rem;
    min-width: 2rem;
    text-align: center;
    flex-shrink: 0;
}

.campaign-box .checklist i {
    color: #0b0d17;
    background: radial-gradient(circle, #00ff41 45%, transparent 50%);
    border-radius: 50%;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1;
    
}

.campaign-box .btn-primary {
    background-color: #00ff41;
    color: #0b0d17;
    border-color: #00ff41;
}

.campaign-box .btn-primary:hover {
    background-color: transparent;
    color: #00ff41;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}


.why-section {
    background-color: #f1f1ef;
    padding: 40px 0;
}

.services-preview {
    background-color: white;
    
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    
}

.service-card-mini {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-mini .btn {
    margin-top: auto;
    align-self: flex-start;
}

.service-card-mini:hover {
    background: white;
    border-color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card-mini h3 {
    font-size: 1.2rem;
    color: var(--bg-dark);
    margin: 1rem 0 0.5rem;
}

.service-card-mini i {
    font-size: 2rem;
    color: #00ff41;
    -webkit-text-stroke: 1px #0b0d17;
    text-stroke: 1px #0b0d17;
}

.service-card-mini .btn-outline i {
    color: #00ff41;
    -webkit-text-stroke: 1px #0b0d17;
    text-stroke: 1px #0b0d17;
}


.sidebar .checklist i {
    color: #00ff41;
    -webkit-text-stroke: 1px #0b0d17;
    text-stroke: 1px #0b0d17;
    margin-right: 0.5rem;
}

.sidebar .btn-primary {
    background-color: #00ff41;
    color: #0b0d17;
    border-color: #00ff41;
    font-weight: 700;
}

.sidebar .btn-primary:hover {
    background-color: transparent;
    color: #00ff41;
    border-color: #00ff41;
}


.content ul li i.fa-check-circle {
    color: #0b0d17;
    background: radial-gradient(circle, #00ff41 45%, transparent 50%);
    border-radius: 50%;
    margin-right: 0.8rem;
    margin-top: 5px;
    
    
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}


footer {
    background-color: var(--bg-dark);
    color: var(--text-on-dark);
    padding: 0 0 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    opacity: 0.7;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.4;
}

.footer h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer ul li {
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
}

.footer ul li a {
    opacity: 0.7;
}

.footer ul li a:hover {
    opacity: 1;
    color: var(--accent-blue);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.8;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-links a {
    color: white;
    opacity: 0.7;
    transition: 0.3s;
}

.footer-social-links a:hover {
    opacity: 1;
    color: var(--accent-blue);
}

.footer-flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    gap: 1rem;
    padding-top: 1rem;
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-right {
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    
}

.footer-right h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-right p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}


@media (max-width: 992px) {

    .footer-flex-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-left {
        align-items: center;
        width: 100%;
    }

    .footer-center {
        width: 100%;
        margin: 1rem 0;
    }

    .footer-right {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero-content,
    .campaign-box {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
        
    }
}


@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
    
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    animation-play-state: paused;
    
    transform: translateY(-5px) scale(1.1);
    
}




.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    z-index: 1001;
    transition: color 0.3s;
}

.hamburger:hover {
    color: #00ff41;
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: flex;
        position: fixed;
        color: white;
        top: 0;
        right: -100%;
        
        width: 75%;
        
        height: 100vh;
        background-color: var(--bg-dark);
        
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 2px solid #00ff41;
        
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: white;
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s;
    }

    .nav-links a:hover {
        background: rgba(0, 255, 65, 0.1);
        color: #00ff41;
        padding-left: 1rem;
        
    }

    
    .container {
        padding: 0 1.5rem;
    }

    
    .hero-text h1 {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    h2 {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .hero p {
        font-size: 1.1rem;
    }

    
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-text {
        order: 1;
        
    }

    .hero-image {
        order: 2;
        
        max-width: 80%;
        margin: 0 auto;
        opacity: 0.8;
        
        animation: none !important;
    }

    .hero-image img {
        animation: none !important;
    }

    @media (max-width: 768px) {
        .hero-image {
            display: none;
            
        }
    }

    .stats-section,
    .campaign-section,
    .why-section,
    .contact-section {
        padding: 60px 0;
    }

    
    .campaign-box {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }

    .campaign-box i.fa-file-shield {
        font-size: 6rem !important;
        
        margin-top: 1rem;
    }

    .checklist li {
        justify-content: center;
        
        text-align: left;
        
    }

    
    .footer-flex-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .stats-grid,
    .footer-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    
    .contact-form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        width: 100%;
        min-height: 50px;
        
    }

    
    div[style*="display: flex; gap: 4rem;"] {
        flex-direction: column !important;
        gap: 2rem !important;
        padding: 1.5rem !important;
    }

    
    .logo a {
        
        flex-wrap: wrap;
        justify-content: center;
    }

    
    header .logo-slogan {
        display: block;
        
        width: 100%;
        text-align: center;
        margin-top: 0.25rem;
        font-size: 0.75rem !important;
        
        color: rgba(255, 255, 255, 0.6) !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-tag {
        font-size: 0.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}



.active-flag {
    box-shadow: 0 0 0 2px var(--bg-dark);
    
    transform: scale(1.2);
    
    opacity: 1 !important;
    z-index: 1;
}

#language-toggle img {
    transition: all 0.3s ease;
    border-radius: 4px;
    opacity: 0.5;
    
    filter: grayscale(80%);
    
}

#language-toggle:hover img {
    opacity: 0.8;
    filter: grayscale(0%);
}

#language-toggle img.active-flag {
    filter: grayscale(0%);
    
}


.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    background: white;
    border-color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--bg-dark);
    margin: 1rem 0 0.5rem;
}


.service-card .icon-box i {
    font-size: 2rem;
    color: #00ff41;
    
    -webkit-text-stroke: 1px #0b0d17;
    
    text-stroke: 1px #0b0d17;
}

.service-card .btn-outline {
    background-color: #00ff41 !important;
    
    color: #000000 !important;
    
    border-color: #00ff41 !important;
    font-weight: 700;
}

.service-card .btn-outline:hover {
    background-color: transparent !important;
    color: #00ff41 !important;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}


.cookie-consent-modal {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 400px;
    background-color: #0b0d17;
    border: 1px solid #00ff41;
    border-radius: 12px;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
    
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-consent-modal.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cookie-content {
    position: relative;
    color: #fff;
}

.cookie-close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.cookie-close-btn:hover {
    color: #00ff41;
}

.cookie-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.cookie-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept {
    background-color: #00ff41;
    color: #000;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.4);
}

.btn-cookie-policy {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s;
    font-family: inherit;
    display: inline-block;
}

.btn-cookie-policy:hover {
    border-color: #00ff41;
    color: #00ff41;
}

@media (max-width: 480px) {
    .cookie-consent-modal {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
        border-bottom: none;
        border-left: none;
        border-right: none;
    }
}



@media (min-width: 1025px) {
    nav {
        justify-content: flex-start !important;
        
    }

    
    .nav-links {
        margin-left: auto !important;
        margin-right: 1.5rem !important;
        display: flex !important;
        gap: 2rem !important;
        align-items: center !important;
    }
}


@media (max-width: 1024px) {
    nav {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative;
    }

    .logo {
        order: 0;
        margin-right: 0;
    }

    
    nav>div:last-child {
        order: 1;
        margin-left: auto;
        
        margin-right: 1rem;
    }

    .hamburger {
        order: 2;
        margin-left: 0;
    }
}


@media (min-width: 900px) {
    nav {
        display: flex !important;
    }
}





.footer-social-links {
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-social-links a {
    font-size: 1.5rem !important;
    
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-social-links a:hover {
    color: #00ff41 !important;
    transform: scale(1.2) translateY(-3px) !important;
    
    text-shadow: 0 0 15px #00ff41, 0 0 30px #00ff41;
    
}


.footer-bottom-unified {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-right: auto;
}

.footer-legal-links-inline {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-legal-links-inline a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal-links-inline a:hover {
    color: #00ff41;
}


@media (max-width: 768px) {
    .footer-bottom-unified {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-copyright {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .footer-legal-links-inline {
        flex-wrap: wrap;
        justify-content: center;
    }
}




.footer-social-links {
    margin-bottom: 0.5rem;
    margin-top: 0;
    
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-social-links a {
    font-size: 1.5rem !important;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-social-links a:hover {
    color: #00ff41 !important;
    transform: scale(1.2) translateY(-3px) !important;
    text-shadow: 0 0 15px #00ff41, 0 0 30px #00ff41;
}


.footer-bottom-unified {
    display: none !important;
}


@media (max-width: 768px) {
    .footer-flex-wrapper {
        text-align: center;
        flex-direction: column;
        gap: 2rem;
    }
}


.blog-cta-box {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-top: 4rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.blog-cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00ff41, #2563eb);
}

.blog-cta-box h3 {
    margin-bottom: 1rem;
    color: var(--bg-dark);
    font-size: 1.5rem;
}

.blog-cta-box p {
    margin-bottom: 2rem;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}




@media (min-width: 769px) and (max-width: 992px) {

    
    .stats-grid,
    .services-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }

    
    .stats-grid .stat-card:last-child {
        grid-column: 1 / -1;
        max-width: 60%;
        margin: 0 auto;
    }

    
    .footer-flex-wrapper {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .footer-left {
        width: 100%;
        text-align: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    
    .footer-center,
    .footer-right {
        width: 45%;
        text-align: center;
        align-items: center;
    }

    .footer-right {
        align-items: center !important;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}


@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem !important;
    }

    
    .hero-text h1 {
        font-size: 2.1rem !important;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .stat-value {
        font-size: 2rem !important;
    }

    
    .hero {
        padding: 80px 0 40px !important;
    }

    .campaign-box {
        padding: 1.5rem !important;
        gap: 1.5rem !important;
    }

    
    .campaign-box .fa-file-shield {
        display: none !important;
    }

    .campaign-box .checklist {
        margin-top: 0;
    }

    
    .footer-flex-wrapper {
        gap: 2rem !important;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        text-align: center !important;
        align-items: center !important;
    }

    
    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        
    }
}





.contact-info-card a[href*='linkedin']:hover {
    background-color: transparent;
    color: #0077b5 !important;
    border-color: #0077b5 !important;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.6), inset 0 0 10px rgba(0, 119, 181, 0.2);
    text-shadow: 0 0 5px rgba(0, 119, 181, 0.5);
    transform: translateY(-2px);
}

.contact-info-card a[href*='linkedin']:hover i {
    color: #0077b5 !important;
    
    filter: drop-shadow(0 0 5px rgba(0, 119, 181, 0.8));
}

.contact-info-card a[href*='instagram']:hover {
    background-color: transparent;
    color: #e1306c !important;
    border-color: #e1306c !important;
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.6), inset 0 0 10px rgba(225, 48, 108, 0.2);
    text-shadow: 0 0 5px rgba(225, 48, 108, 0.5);
    transform: translateY(-2px);
}

.contact-info-card a[href*='instagram']:hover i {
    color: #e1306c !important;
    
    filter: drop-shadow(0 0 5px rgba(225, 48, 108, 0.8));
}




.footer-social-links a[href*='linkedin']:hover {
    color: #0077b5 !important;
    text-shadow: 0 0 10px rgba(0, 119, 181, 0.8), 0 0 20px rgba(0, 119, 181, 0.4);
    transform: translateY(-2px);
    opacity: 1;
}

.footer-social-links a[href*='instagram']:hover {
    color: #e1306c !important;
    text-shadow: 0 0 10px rgba(225, 48, 108, 0.8), 0 0 20px rgba(225, 48, 108, 0.4);
    transform: translateY(-2px);
    opacity: 1;
}


@media screen and (max-width: 768px) {

    
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .container {
        width: 100%;
        padding: 0 20px !important;
        
        box-sizing: border-box;
    }

    img,
    video,
    iframe,
    .campaign-box,
    .stat-card,
    .service-card,
    .service-card-mini {
        max-width: 100% !important;
        height: auto;
        box-sizing: border-box;
    }

    
    nav {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
        position: relative;
        padding: 0 10px;
    }

    
    .hamburger {
        display: block !important;
        margin-left: auto;
        font-size: 1.8rem;
        z-index: 2000;
        
    }

    
    .logo {
        margin-right: auto;
        z-index: 2000;
        
    }

    
    .nav-links {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%;
        
        width: 75%;
        height: 100vh;
        background-color: var(--bg-dark);
        z-index: 1500;
        transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        padding-top: 60px;
        margin: 0 !important;
        gap: 2rem !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    
    .nav-links.active {
        right: 0;
        
        box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.7);
    }

    .nav-links a {
        font-size: 1.5rem;
        color: white;
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    
    .footer-flex-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1.5rem !important;
        width: 100%;
    }

    .footer-left,
    .footer-center,
    .footer-right,
    .footer-brand {
        width: 100% !important;
        align-items: center !important;
        text-align: center !important;
        justify-content: center !important;
    }

    
    footer {
        width: 100%;
        overflow-x: hidden;
        padding: 1.5rem 0;
    }

    .footer-social-links {
        justify-content: center !important;
        gap: 1.5rem !important;
    }

    
    .footer-right h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .footer-right p {
        font-size: 1rem;
    }

    
    a,
    button,
    .btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {

    
    ul,
    .checklist,
    .content ul,
    .footer-flex-wrapper ul {
        text-align: left !important;
        padding-left: 0;
        margin-left: 0;
    }

    .checklist li {
        justify-content: flex-start;
        
        text-align: left;
    }

    
    p,
    h1,
    h2,
    h3,
    h4,
    .hero-text,
    .campaign-box {
        text-align: left !important;
    }

    

    .hero-text,
    .campaign-box,
    .content,
    .why-section,
    .importance-section {
        text-align: left !important;
    }

    
    .hero-content {
        align-items: flex-start !important;
        
    }
}


@media (max-width: 480px) {
    .footer-flex-wrapper {
        gap: 1rem !important;
        
        padding-top: 0.5rem !important;
    }

    footer {
        padding: 1rem 0 !important;
    }

    .footer-brand img {
        height: 50px !important;
        
    }

    .footer-social-links {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        gap: 1rem !important;
    }

    .footer-social-links a {
        width: 32px !important;
        height: 32px !important;
        font-size: 1.2rem !important;
    }

    .footer-right h4 {
        margin-bottom: 0.25rem !important;
        font-size: 1.1rem !important;
    }

    .footer-right p {
        font-size: 0.9rem !important;
        margin-bottom: 0 !important;
    }
}


@media only screen and (max-width: 480px) {

    
    .sidebar>div {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        width: 100% !important;
        position: static !important;
        margin-top: 2rem !important;
    }

    .sidebar>div h3 {
        padding-top: 1rem;
        border-top: 1px solid #eee;
        margin-top: 0 !important;
    }

    .sidebar .btn {
        width: 100% !important;
    }

    
    nav {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.5rem 0;
        width: 100% !important;
    }

    .logo {
        display: flex !important;
        align-items: center;
        z-index: 2001;
        margin-right: auto !important;
        
    }

    .logo a {
        display: flex !important;
    }

    .logo img {
        height: 35px !important;
        
        width: auto !important;
    }

    .hamburger {
        display: block !important;
        margin-left: auto !important;
        
        z-index: 2001;
        font-size: 1.5rem !important;
    }

    
    .nav-links {
        top: 55px !important;
        height: calc(100vh - 55px) !important;
        width: 100% !important;
        
        right: -100% !important;
    }

    .nav-links.active {
        right: 0 !important;
    }

    
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }

    .container {
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    p,
    li,
    span,
    a,
    div {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }

    
    
    section .container>div[style*="grid-template-columns"],
    .services-grid,
    .stats-grid,
    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    
    .hero-content {
        flex-direction: column !important;
        text-align: center !important;
    }

    .hero-text {
        text-align: center !important;
    }

    .hero-content .hero-image img {
        max-width: 80% !important;
        margin: 0 auto;
    }

    
    footer {
        padding: 20px 0 10px !important;
    }

    .footer-flex-wrapper {
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding-top: 0 !important;
    }

    .footer-brand,
    .footer-center,
    .footer-right {
        text-align: center !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .footer-brand img {
        height: 40px !important;
        margin-bottom: 0.5rem !important;
    }

    .footer-social-links {
        margin: 0.5rem 0 !important;
        justify-content: center !important;
    }

    .footer-right h4 {
        margin-bottom: 0.25rem !important;
    }

    .footer-restored-links {
        margin-top: 1rem !important;
    }

    

    
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        background-color: var(--bg-dark) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    }

    
    body {
        padding-top: 70px !important;
    }

    
    .hero-content {
        
    }

    .hero-image {
        display: flex !important;
        order: -1 !important;
        
        margin-bottom: 2rem !important;
        width: 100% !important;
        justify-content: center !important;
        
        animation: none !important;
    }

    .hero-image img {
        max-width: 60% !important;
        height: auto !important;
        
        animation: none !important;
        display: block !important;
    }
}