/* Base Styles */
:root {
    --primary-color: #00CFFF;
    --dark-bg: #121212;
    --dark-secondary: #1e1e1e;
    --dark-tertiary: #2d2d2d;
    --text-color: #ffffff;
    --text-secondary: #b0b0b0;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

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

section {
    padding: 100px 0;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(0, 207, 255, 0.4);
}

.btn-primary:hover {
    background-color: #00b8e6;
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(0, 207, 255, 0.4);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.8rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-small:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--dark-bg);
}

/* Header & Navigation */
.header {
    background-color: var(--dark-primary);
    padding: 5px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    max-height: 40px;
    transition: var(--transition);
    filter: drop-shadow(0 0 8px rgba(0, 207, 255, 0.5));
}

.enlarged-logo {
    max-height: 55px !important;
}

.super-enlarged-logo {
    max-height: 100px !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
    margin-left: 5px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover, .nav-link.active-link {
    color: var(--primary-color);
    background-color: rgba(0, 207, 255, 0.1);
}

.active-link {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.small-nav-link {
    font-size: 0.8rem;
    padding: 6px 10px;
    opacity: 0.8;
}

.nav-influencer {
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.2), rgba(0, 0, 0, 0));
    border: 1px solid rgba(0, 207, 255, 0.3);
    padding: 8px 15px;
    margin-left: 10px;
}

.nav-influencer:hover {
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.3), rgba(0, 0, 0, 0));
    border: 1px solid rgba(0, 207, 255, 0.5);
}

.nav-divider {
    height: 20px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-toggle {
    position: relative;
    padding-right: 15px;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-tertiary);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 207, 255, 0.1);
    display: none;
    z-index: 1000;
    padding: 8px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform-origin: top center;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--dark-tertiary);
    border-top: 1px solid rgba(0, 207, 255, 0.1);
    border-left: 1px solid rgba(0, 207, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    color: var(--text-color);
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 6px;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: rgba(0, 207, 255, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../images/devcipher_banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    text-shadow: 0 0 15px rgba(0, 207, 255, 0.5);
}

.slogan {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-badge {
    background-color: rgba(0, 207, 255, 0.1);
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition);
}

.hero-badge:hover {
    background-color: rgba(0, 207, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Typing Effect */
.typing-effect {
    border-right: 3px solid var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    margin: 0 auto;
    animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--dark-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.8;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--dark-tertiary);
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover .team-image {
    transform: scale(1.05);
}

.about-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1rem;
    transition: opacity 0.3s ease;
}

.team-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-values {
    margin-top: 4rem;
}

.about-values h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    background-color: var(--dark-tertiary);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Warum devcipher? Section */
.why-us {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.why-us:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/code-pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-us-item {
    background-color: var(--dark-tertiary);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.1), rgba(0, 207, 255, 0.05));
    border-radius: 50%;
}

.why-us-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.why-us-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.why-us-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--dark-bg);
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    background-color: var(--dark-bg);
}

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

.service-card {
    background-color: var(--dark-tertiary);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-10px);
}

.service-image {
    height: 160px;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: translateY(-5px);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Consulting Section */
.consulting {
    background-color: var(--dark-secondary);
}

.consulting-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.consulting-text {
    flex: 1;
}

.consulting-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trust-points {
    list-style: none;
    margin-top: 20px;
}

.trust-points li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.trust-points i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Portfolio Section */
.portfolio {
    background-color: var(--dark-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.portfolio-item {
    background-color: var(--dark-tertiary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    margin-bottom: 10px;
}

.portfolio-info p {
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.portfolio-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark-secondary);
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding-bottom: 30px;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: var(--dark-bg);
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.testimonial-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 30px;
    background-color: var(--dark-tertiary);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p:before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0;
}

.author-company {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.rating {
    color: #FFD700;
}

/* AGB Section */
.agb {
    background-color: var(--dark-bg);
}

.agb-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.agb-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.agb-text {
    flex: 1;
}

/* Contact Section */
.contact {
    background-color: var(--dark-secondary);
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-form {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--dark-tertiary);
    border: 1px solid #444;
    border-radius: 4px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 207, 255, 0.2);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info img {
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.faq:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/code-pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.faq-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--dark-tertiary);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(0, 207, 255, 0.1);
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-toggle i {
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Technologies Section */
.technologies {
    background-color: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.technologies:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/code-pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.tech-item {
    background-color: var(--dark-tertiary);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tech-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.tech-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.tech-item p {
    color: var(--text-secondary);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-theme-toggle {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher-footer {
    display: flex;
    align-items: center;
}

.language-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0 5px;
    transition: color 0.3s ease;
}

.language-btn:hover {
    color: var(--primary-color);
}

.divider {
    color: var(--text-secondary);
    opacity: 0.5;
    margin: 0 2px;
}

.theme-toggle-footer {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.theme-toggle-footer:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-secondary);
    color: var(--text-primary);
    position: relative;
    border-top: 1px solid rgba(0, 207, 255, 0.15);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--dark-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 207, 255, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #00e0ff;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 207, 255, 0.05), transparent 60%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

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

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

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
    max-width: 180px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0, 207, 255, 0.4));
}

.footer-slogan {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-contact {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-item a, .contact-item span {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Footer Links & Services Sections */
.footer-links h4, .footer-services h4, .footer-legal h4, .footer-social h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after, .footer-services h4:after, .footer-legal h4:after, .footer-social h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul, .footer-services ul, .footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-services li, .footer-legal li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links a, .footer-services a, .footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover, .footer-services a:hover, .footer-legal a:hover {
    color: var(--primary-color);
    padding-left: 8px;
    transform: translateX(2px);
}

.footer-links a:before, .footer-services a:before, .footer-legal a:before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-links a:hover:before, .footer-services a:hover:before, .footer-legal a:hover:before {
    opacity: 1;
    left: -5px;
}

/* Footer Legal & Social */
.footer-legal-social {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-legal {
    margin-bottom: 30px;
}

.footer-social h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 207, 255, 0.1);
    color: var(--text-secondary);
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-icons a:hover {
    color: var(--dark-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 207, 255, 0.2);
}

.social-icons a:hover:before {
    transform: scale(1);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.language-theme-toggle {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher-footer {
    display: flex;
    align-items: center;
}

.language-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0 5px;
    transition: color 0.3s ease;
}

.language-btn:hover {
    color: var(--primary-color);
}

.divider {
    color: var(--text-secondary);
    margin: 0 2px;
}

.theme-toggle-footer {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle-footer:hover {
    color: var(--primary-color);
    transform: rotate(15deg);
}

@media (max-width: 768px) {
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.footer-social {
    text-align: right;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-tertiary);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.social-icons i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    transform: translateY(200%);
    width: 380px;
    max-width: 90%;
    background-color: var(--dark-tertiary);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 207, 255, 0.1);
    z-index: 999;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 207, 255, 0.15);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    width: 100%;
}

.cookie-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.cookie-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 5px 0;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-secondary);
    border-radius: 4px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-option input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-option input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--dark-bg);
    font-size: 0.7rem;
}

.cookie-option input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-option label {
    font-size: 0.95rem;
    cursor: pointer;
}

.cookie-option label span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: 4px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
    margin-top: 10px;
}

.cookie-buttons button {
    padding: 10px 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-buttons #accept-cookies {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 207, 255, 0.3);
}

.cookie-buttons #accept-cookies:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 207, 255, 0.4);
}

.cookie-buttons #save-cookies {
    background-color: rgba(0, 207, 255, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(0, 207, 255, 0.3);
}

.cookie-buttons #save-cookies:hover {
    background-color: rgba(0, 207, 255, 0.25);
}

.cookie-buttons #decline-cookies {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

.cookie-buttons #decline-cookies:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-footer {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    width: 100%;
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

.cookie-footer a {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cookie-footer a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 576px) {
    .cookie-banner {
        bottom: 15px;
        right: 15px;
        left: 15px;
        width: auto;
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-header h4 {
        font-size: 1.1rem;
    }
    
    .cookie-content p {
        font-size: 0.85rem;
    }
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    .service-grid,
    .influencer-grid,
    .portfolio-grid,
    .values-grid {
        gap: 20px;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    section {
        padding: 80px 0;
    }
    
    .consulting-content,
    .agb-content,
    .contact-content,
    .service-detail-content,
    .gameserver-content {
        flex-direction: column;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-detail-image {
        margin-bottom: 30px;
    }
    
    .pricing-table {
        overflow-x: auto;
    }
    
    .creator-card {
        max-width: 100%;
    }
    
    .giveaway-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        position: relative;
        z-index: 1010;
        cursor: pointer;
    }
    
    .bar {
        display: block;
        width: 100%;
        height: 3px;
        margin: 0;
        border-radius: 3px;
        background-color: var(--text-color);
        transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--primary-color);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--primary-color);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 80px 0 40px;
        overflow-y: auto;
        display: flex;
        align-items: center;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 8px 0;
        width: 100%;
        max-width: 300px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }
    
    .dropdown-toggle {
        justify-content: center;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: rgba(0, 207, 255, 0.05);
        border-radius: 8px;
        display: none;
        opacity: 1;
        transform: none;
        padding: 5px;
        width: 100%;
        max-width: 300px;
        margin: 5px auto 15px;
        border: 1px solid rgba(0, 207, 255, 0.1);
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 10px;
        font-size: 1rem;
    }
    
    .nav-divider {
        width: 80%;
        height: 1px;
        margin: 15px auto;
    }
    
    .small-nav-link {
        font-size: 0.9rem;
        opacity: 0.7;
    }
    
    .nav-influencer {
        margin: 10px auto;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .slogan {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .slogan {
        font-size: 1.2rem;
    }
    
    .testimonial-item,
    .service-card {
        flex: 0 0 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-box {
        padding: 20px;
    }
    
    .creator-info {
        padding: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .giveaway-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step {
        width: 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .values-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .giveaway-locked {
        padding: 20px;
    }
    
    .creator-card {
        flex-direction: column;
    }
    
    .creator-card img {
        width: 100px;
        height: 100px;
        margin: 0 auto 15px;
    }
    
    .creator-info {
        text-align: center;
    }
    
    .creator-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .service-image {
        height: 180px;
    }
}

/* Influencer Section */
.influencer {
    padding: 100px 0;
    background-color: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.influencer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 207, 255, 0.1) 0%, rgba(0, 207, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.influencer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 207, 255, 0.1) 0%, rgba(0, 207, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.influencer .container {
    position: relative;
    z-index: 2;
}

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

.influencer-card {
    background-color: var(--dark-tertiary);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 207, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.influencer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 207, 255, 0.3);
}

.influencer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.2), rgba(0, 207, 255, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.influencer-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.influencer-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.influencer-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-container {
    margin-top: 50px;
    text-align: center;
}
