@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@500;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

:root {
    --primary: #FF6B00;
    --primary-dark: #cc5500;
    --primary-glow: rgba(255, 107, 0, 0.5);
    --bg-dark: #050505;
    --bg-lighter: #0a0a0a;
    --bg-card: rgba(20, 20, 20, 0.6);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-header: rgba(5, 5, 5, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.ambient-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(100, 50, 255, 0.2), transparent 70%);
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 50px) scale(1.1);
    }
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-orange {
    color: var(--primary);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

header.scrolled {
    padding: 15px 0;
    background: var(--glass-header);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo span {
    color: var(--primary);
}

.logo i {
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: white;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

nav ul li a:hover::before,
nav ul li a.active::before {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
}

.mobile-menu.active {
    right: 0;
}

.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff8f40);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.5);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: white;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
}

.page-header {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--bg-dark));
    padding-top: 60px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.breadcrumb {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.breadcrumb span {
    color: var(--primary);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #888, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin: 0 auto 45px;
    max-width: 700px;
}

.clients-section {
    padding: 40px 0;
    border-y: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.slider {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slide-track {
    display: flex;
    width: calc(200px * 10);
    animation: scroll 30s linear infinite;
}

.slide {
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 140px;
    max-height: 60px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: 0.3s;
    object-fit: contain;
}

.slide:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 5));
    }
}

.process-grid,
.blog-grid {
    display: grid;
    gap: 30px;
}

.process-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.process-card,
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
}

.process-card:hover,
.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.process-card {
    padding: 40px 30px;
    position: relative;
}

.process-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 0;
    right: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
}

.blog-img {
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-cat {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.read-more {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: white;
}

.read-more:hover {
    color: var(--primary);
    gap: 10px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--bg-card);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-info {
    padding: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(0, 0, 0, 0));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-form {
    padding: 60px;
    background: rgba(255, 255, 255, 0.01);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

input,
select,
textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    padding: 18px;
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background: var(--bg-card);
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-header {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    border-color: var(--primary);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
}

.faq-body p {
    padding-bottom: 25px;
    color: var(--text-gray);
}

footer {
    background: #020202;
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    width: 100%;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        display: flex !important;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-about .social-links {
        justify-content: center;
    }

    .footer-about .logo {
        justify-content: center;
    }
}

.footer-links h4 {
    margin-bottom: 25px;
    color: white;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-gray);
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    color: white;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.timeline-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-row {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    margin-bottom: 60px;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.timeline-content {
    width: 45%;
    position: relative;
    padding: 40px;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: 0.4s;
    z-index: 2;
}

.timeline-content:hover {
    background: rgba(30, 30, 30, 0.8);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
}

.timeline-row:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-row:nth-child(even) {
    justify-content: flex-end;
}

.timeline-row:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 50px;
    text-align: right;
}

.timeline-row:nth-child(even) .timeline-content {
    margin-right: auto;
    margin-left: 50px;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    font-weight: bold;
    color: var(--primary);
    font-size: 1.2rem;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}

.timeline-row:nth-child(odd) .timeline-content::after {
    right: -15px;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.05);
}

.timeline-row:nth-child(even) .timeline-content::after {
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent rgba(255, 255, 255, 0.05) transparent transparent;
}

.timeline-content:hover::after {
    border-color: transparent transparent transparent var(--primary);
}

.bg-number {
    position: absolute;
    bottom: -20px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: -1;
    transition: 0.3s;
}

.timeline-row:nth-child(odd) .bg-number {
    right: 20px;
}

.timeline-row:nth-child(even) .bg-number {
    left: 20px;
}

.timeline-content:hover .bg-number {
    color: rgba(255, 107, 0, 0.1);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .timeline-section::before {
        left: 30px;
    }

    .timeline-row {
        justify-content: flex-end !important;
        margin-left: 30px;
        width: auto;
    }

    .timeline-content {
        width: 100%;
        margin: 0 0 0 30px !important;
        text-align: left !important;
    }

    .timeline-dot {
        left: 30px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .timeline-content::after {
        left: -15px !important;
        border-width: 10px 15px 10px 0 !important;
        border-color: transparent rgba(255, 255, 255, 0.05) transparent transparent !important;
    }

    .bg-number {
        right: 20px !important;
        left: auto !important;
    }
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: transparent;
    color: var(--text-gray);
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.featured-post {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 60px;
    align-items: center;
}

.featured-img {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.featured-post:hover .featured-img img {
    transform: scale(1.05);
}

.featured-content {
    padding: 20px;
}

.featured-badge {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-gray);
}

@media (max-width: 992px) {
    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-img {
        height: 250px;
    }
}

.article-header {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-dark) 10%, rgba(0, 0, 0, 0.6) 80%);
}

.article-title-box {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.article-cat-badge {
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: white;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--primary);
}

.article-content ul,
.article-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.25rem;
    color: white;
    border-radius: 0 15px 15px 0;
}

.share-bar {
    display: flex;
    gap: 15px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    align-items: center;
    justify-content: center;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: 0.3s;
    font-size: 1.1rem;
}

.share-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .article-header {
        height: 50vh;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-title-box h1 {
        font-size: 2rem;
    }
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    20% {
        clip: rect(85px, 9999px, 80px, 0);
    }

    40% {
        clip: rect(10px, 9999px, 50px, 0);
    }

    60% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    80% {
        clip: rect(25px, 9999px, 90px, 0);
    }

    100% {
        clip: rect(60px, 9999px, 5px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(10px, 9999px, 60px, 0);
    }

    20% {
        clip: rect(60px, 9999px, 10px, 0);
    }

    40% {
        clip: rect(30px, 9999px, 50px, 0);
    }

    60% {
        clip: rect(90px, 9999px, 25px, 0);
    }

    80% {
        clip: rect(10px, 9999px, 85px, 0);
    }

    100% {
        clip: rect(50px, 9999px, 30px, 0);
    }
}

.process-card,
.blog-card {
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
}

.process-card:hover,
.blog-card:hover {
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    animation: pulse 1.5s infinite;
}

.loader-logo span {
    color: var(--primary);
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9990;
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 400px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 20px;
    z-index: 9980;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-content h4 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-btn {
    background: white;
    color: black;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

.cookie-btn:hover {
    background: var(--primary);
    color: white;
}

.error-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05), var(--bg-dark));
}

.error-code {
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.error-code::after {
    content: '404';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--primary);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.ref-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.ref-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.ref-logo {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
    margin-bottom: 20px;
}

.ref-card:hover .ref-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.ref-stat {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.ref-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 9980;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top.active {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 20px;
        right: 20px;
        bottom: 20px;
        width: auto;
        max-width: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .scroll-top {
        right: 20px;
        bottom: 85px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none !important;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}


@media (max-width: 991px) {
    header nav {
        display: none !important;
    }

    header .header-btn {
        display: none !important;
    }

    .mobile-toggle {
        display: block !important;
        font-size: 1.8rem;
        cursor: pointer;
        color: white;
    }

    .nav-wrapper {
        justify-content: space-between !important;
    }
}