/*
Theme Name: DigitalPaper
Theme URI: none
Author: Marley Vinícius
Author URI: none too
Description: DigitalPaper main page
Version: 2.0
*/
:root {
    --primary-blue: #003366; 
    --accent-blue: #007BFF;  
    --footer-bg: #030a1c;     
    --text-color: #333333;
    --light-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


.main-header {
    background-color: var(--primary-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-blue);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}


.hero-modern-section {
    background-color: #001124; 
    padding: 60px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-modern-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


.hero-modern-content {
    flex: 1;
    max-width: 650px;
}


.hero-tag-intro {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0084ff;
    display: block;
    margin-bottom: 20px;
}

.hero-modern-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-gradient-text {
    color: #0084ff;
    background: linear-gradient(45deg, #0084ff, #00c6ff);
    -webkit-background-clip: text; 
    background-clip: text;         
    -webkit-text-fill-color: transparent;
}

.hero-modern-lead {
    font-size: 1.15rem;
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 35px;
}


.hero-modern-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-hero-primary {
    background: #0084ff;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 132, 255, 0.3);
}

.btn-hero-primary:hover {
    background: #006cd4;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    color: #0084ff;
    transform: translateY(2px);
}


.hero-modern-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 500px;
}

.hero-tech-card {
    background: rgba(2, 26, 58, 0.65);
    border: 1px solid rgba(0, 132, 255, 0.2);
    border-radius: 12px;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.tech-card-header {
    background: rgba(1, 15, 36, 0.8);
    padding: 12px 20px;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    border-bottom: 1px solid rgba(0, 132, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.tech-card-title {
    color: #718096;
    font-size: 0.8rem;
    font-family: monospace;
    margin-left: 10px;
}

.tech-card-body {
    padding: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tech-line {
    color: #e2e8f0;
    margin-bottom: 20px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.tech-line:last-child { margin-bottom: 0; }
.text-blue { color: #0084ff; }
.text-green { color: #27c93f; }
.text-yellow { color: #ffbd2e; }


.hero-blur-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 132, 255, 0.3) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 1;
}


@media (max-width: 992px) {
    .hero-modern-container {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    .hero-modern-actions {
        justify-content: center;
    }
    .hero-modern-visual {
        width: 100%;
    }
}


.surgimento-topo { opacity: 0; animation: fadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.surgimento-subir { opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; }
.surgimento-subir-lento { opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; }
.surgimento-botoes { opacity: 0; animation: fadeZoom 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards; }
.surgimento-direita { opacity: 0; animation: fadeLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeZoom {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}


.about-section, .dpged-section, .clients-section, .feedbacks-section {
    padding: 80px 0;
}


.main-footer {
    background-color: var(--footer-bg);
    color: #a0aec0;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: #ffffff;
}

.brand-col p {
    margin: 20px 0;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    border: 1px solid #2d3748;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background-color: var(--accent-blue);
}

.actions-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.btn-footer-contact {
    background-color: #81e6d9;
    color: #1a202c;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
}

.btn-footer-work {
    background-color: #ffffff;
    color: #1a202c;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
}

.btn-footer-contact:hover, .btn-footer-work:hover {
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid #1a202c;
    padding-top: 20px;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.back-to-top {
    color: #a0aec0;
    text-decoration: none;
}


.about-section {
    padding: 100px 0 0 0 !important; 
    background-color: #002244 !important; 
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 60px !important;
    align-items: center !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-title {
    font-size: 2.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    color: #ffffff !important;
}

.about-title span {
    color: #38bdf8 !important;
}

.about-description {
    color: #cbd5e1 !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
}


.about-stats-panel {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 25px !important;
    text-align: center !important;
    transition: transform 0.3s ease, border-color 0.3s ease !important;
}

.stat-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(56, 189, 248, 0.4) !important;
}

.stat-number-wrapper {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    color: #38bdf8 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.stat-label {
    color: #94a3b8 !important;
    font-size: 1.1rem !important;
    margin-top: 5px !important;
}


.about-connector-wrapper {
    width: 100%;
    background-color: #002244; 
    display: flex;
    justify-content: center;
    padding: 50px 0 30px 0; 
}


@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .about-stats-panel {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
    .stat-card {
        flex: 1 1 calc(33.33% - 15px) !important;
        min-width: 180px !important;
    }
}

@media (max-width: 576px) {
    .about-stats-panel {
        flex-direction: column !important;
    }
}


.dpged-section-dark {
    position: relative;
    padding: 120px 0;
    background-color: var(--primary-blue);
    color: #ffffff;
}

.dpged-container-dark {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.dpged-intro-block {
    text-align: center;
    max-width: 850px;
    margin: 40px auto 0;
}

.section-tag-dark {
    display: inline-block;
    color: #38bdf8; 
    background: rgba(56, 189, 248, 0.12); 
    border: 1px solid rgba(56, 189, 248, 0.3); 
    padding: 8px 20px; 
    border-radius: 20px; 
    font-size: 1.05rem; 
    font-weight: 700;
    letter-spacing: 2px; 
    text-transform: uppercase;
    margin-bottom: 5px; 
    margin-top: -10px; 
}

.dpged-title-varied {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 15px 0 25px;
    font-weight: 800;
}

.dpged-title-varied .light-weight {
    font-weight: 300;
    color: #e2e8f0;
}

.dpged-lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #cbd5e0;
}

.dpged-cards-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.minimal-card {
    background-color: #ffffff;
    color: #2d3748;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.minimal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 51, 102, 0.35), 
                0 0 20px rgba(0, 123, 255, 0.1);
}

.card-badge-num {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent-blue);
    background-color: rgba(0, 123, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.card-title-clean {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.card-title-clean .accent-weight {
    font-weight: 300;
    color: var(--accent-blue);
}

.card-text-clean {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}


.dpged-cta {
    text-align: center;
    margin-top: 20px;
}

.dpged-cta .btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: var(--primary-blue);
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dpged-cta .btn-primary:hover {
    background-color: var(--accent-blue);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 123, 255, 0.25);
}

@media (max-width: 968px) {
    .dpged-cards-minimal {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .dpged-title-varied {
        font-size: 2.2rem;
    }
    .connector-line-straight {
        height: 80px;
    }
}


.clients-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.clients-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-tag-blue {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.clients-title {
    font-size: 2.2rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 12px;
}

.clients-subtitle {
    color: #718096;
    font-size: 1rem;
}


.clients-grid-compact {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important; 
    gap: 15px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}


.client-item-small {
    background: #f8fafc !important;
    border: 1px solid #edf2f7 !important;
    border-radius: 10px !important;
    padding: 12px !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    
    width: calc(12.5% - 14px) !important; 
    min-width: 130px !important; 
    height: 95px !important; 
    
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}


.client-item-small img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    filter: grayscale(0%) !important; 
    opacity: 1 !important;             
    transition: all 0.3s ease !important;
}

.client-item-small:hover img {
    transform: scale(1.05) !important; 
    opacity: 1 !important;
}


.client-item-small:hover {
    background: #ffffff !important;
    border-color: var(--accent-blue) !important;
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.06) !important;
    transform: translateY(-4px) !important; 
}

.client-item-small:hover img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}


.client-item-small span {
    display: none !important;
}


@media (max-width: 1024px) {
    .client-item-small {
        width: calc(20% - 12px) !important; 
    }
}

@media (max-width: 768px) {
    .clients-grid-compact {
        gap: 10px !important;
    }
    .client-item-small {
        width: calc(33.33% - 8px) !important; 
        height: 80px !important;
        padding: 8px !important;
    }
    .clients-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .client-item-small {
        width: calc(50% - 8px) !important; 
    }
}


.animar-auto {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}


.animar-auto.visivel {
    opacity: 1;
    transform: translateY(0);
}


.surgir-da-esquerda {
    opacity: 0;
    transform: translateX(-100px); 
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.surgir-da-esquerda.ativo {
    opacity: 1;
    transform: translateX(0);
}


.surgir-da-direita {
    opacity: 0;
    transform: translateX(100px); 
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.surgir-da-direita.ativo {
    opacity: 1;
    transform: translateX(0);
}


.surgir-suave {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.surgir-suave.ativo {
    opacity: 1;
    transform: translateY(0);
}


.card-revelar {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.card-revelar.ativo {
    opacity: 1;
    transform: translateY(0) scale(1);
}


.atraso-card-1 { transition-delay: 0.1s; }
.atraso-card-2 { transition-delay: 0.25s; }
.atraso-card-3 { transition-delay: 0.4s; }


.surgir-zoom {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.55s; 
    will-change: opacity, transform;
}

.surgir-zoom.ativo {
    opacity: 1;
    transform: scale(1);
}


.main-footer {
    background-color: #061229; 
    color: #ffffff;
    padding: 60px 0 30px 0;
    font-family: sans-serif;
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.footer-col {
    flex: 1;
    min-width: 200px;
}


.footer-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 15px;
    display: block;
}

.brand-col p {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 20px;
}


.footer-col h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}


.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #0084ff; 
}


.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: #0084ff;
    border-color: #0084ff;
    transform: translateY(-3px);
}


.actions-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.btn-footer-contact {
    background-color: #7fead7; 
    color: #030914;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.btn-footer-contact:hover {
    background-color: #69d4c2;
    transform: translateY(-2px);
}


.footer-location-info .location-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0084ff;
    margin-bottom: 6px;
}

.footer-location-info .location-address {
    font-size: 0.9rem;
    color: #a0aec0;
    line-height: 1.5;
}

.footer-location-info .location-address i {
    color: #00c6ff;
    margin-right: 6px;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    padding-top: 25px;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.85rem;
    color: #718096;
}

.back-to-top {
    color: #718096;
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-to-top:hover {
    color: #ffffff;
}

.footer-email {
    margin-top: 20px; 
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}


.feedbacks-section {
    padding: 80px 0;
    background-color: #02060e; 
    text-align: center;
}


.feedbacks-section .site-main-title {
    margin-bottom: 50px;
}


.feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.feedback-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 35px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 132, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 132, 255, 0.05);
}


.feedback-stars {
    color: #ffc107; 
    font-size: 0.9rem;
    margin-bottom: 20px;
}


.feedback-text {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
}


.feedback-user {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

.user-info h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.user-info span {
    color: #718096;
    font-size: 0.85rem;
    display: block;
}


.feedback-title {
    font-size: 2.8rem;
    font-weight: 300; 
    letter-spacing: -0.5px;
}

.feedback-title .text-highlight {
    font-weight: 800; 
}


.feedback-user {
    display: flex;
    align-items: center;
    gap: 15px; 
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}


.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%; 
    object-fit: cover;  
    border: 2px solid rgba(0, 132, 255, 0.3); 
}


@media (max-width: 768px) {
    
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    
    .brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }


    .actions-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

img {
    max-width: 100%;
    height: auto;
}


.services-section {
    background-color: #030d1a;
    padding: 80px 20px;
    color: #ffffff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    color: #0088ff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.services-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}


.services-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}


.row-top .service-card {
    flex: 1 1 calc(33.333% - 25px); 
    max-width: 380px;
}

.row-bottom .service-card {
    flex: 1 1 calc(50% - 25px); 
    max-width: 450px;
}


.service-card {
    background: #081a33;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #0088ff;
    box-shadow: 0 12px 30px rgba(0, 136, 255, 0.15);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 136, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.6rem;
    color: #0088ff;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
}


.dpged-card {
    border: 1px solid rgba(0, 136, 255, 0.4);
    background: linear-gradient(145deg, #081a33 0%, #0c264a 100%);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0088ff;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}


@media (max-width: 992px) {
    .services-row {
        flex-wrap: wrap;
    }
    
    .row-top .service-card,
    .row-bottom .service-card {
        flex: 1 1 100%; 
        max-width: 100%;
    }
}


.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-icon-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}


.nav-item-dropdown:hover .nav-icon-arrow {
    transform: rotate(180deg);
}


.megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 580px;
    background-color: #061229;
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
}


.nav-item-dropdown:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}


.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.megamenu-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.megamenu-item:hover {
    background: rgba(0, 136, 255, 0.1);
    transform: translateY(-2px);
}

.megamenu-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 136, 255, 0.15);
    color: #0084ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.megamenu-info strong {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.megamenu-info span {
    display: block;
    color: #a0aec0;
    font-size: 0.78rem;
    line-height: 1.3;
}

.mini-badge {
    background: #0084ff;
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    text-transform: uppercase;
}


@media (max-width: 992px) {
    .megamenu {
        position: static;
        transform: none !important;
        width: 100%;
        box-shadow: none;
        border: none;
        background: transparent;
        display: none;
    }

    .nav-item-dropdown:hover .megamenu {
        display: block;
    }

    .megamenu-grid {
        grid-template-columns: 1fr;
    }
}


a.service-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}


a.service-card,
a.service-card h3,
a.service-card p,
a.service-card * {
    text-decoration: none !important;
    outline: none !important;
}


a.service-card:visited,
a.service-card:visited h3,
a.service-card:visited p {
    color: inherit;
    text-decoration: none !important;
}


.footer-bottom, 
.bottom-container, 
.bottom-container * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}


.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1.4rem;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .main-header .header-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        position: relative !important;
    }

    .logo {
        margin-right: auto !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10000 !important;
    }

    .header-cta {
        display: none !important;
    }

    .nav-menu {
        display: none !important;
        position: fixed !important;
        top: 65px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 65px) !important;
        background-color: var(--bg-dark, #050811) !important;
        padding: 30px 24px !important;
        overflow-y: auto !important;
        z-index: 9999 !important;
    }

    .nav-menu.active {
        display: block !important;
    }

    .nav-menu ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .nav-menu li {
        width: 100% !important;
    }

    .megamenu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 10px 0 0 10px !important;
        margin-top: 5px !important;
    }

    .nav-item-dropdown.active .megamenu,
    .nav-item-dropdown:hover .megamenu {
        display: block !important;
    }

    .megamenu-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-modern-container,
    .hero-container,
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
    }

    .hero-modern-title,
    .hero-content h1 {
        font-size: 2.2rem !important;
    }

    .brand-col p {
        margin: 0 auto !important;
    }
}

@media (max-width: 768px) {
    .hero-modern-title,
    .hero-content h1 {
        font-size: 1.8rem !important;
    }

    .bottom-container {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
    }
}

@media (max-width: 992px) {
    .hero-modern-section,
    .hero-section {
        padding-top: 5px !important;  
        padding-bottom: 40px !important; 
    }


    .hero-modern-content {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

.location-link {
    text-decoration: none;
}