:root {
    --primary-color: #1e3799;
    --secondary-color: #0c2461;
    --accent-color: #4a69bd;
    --text-color: #2c3e50;
    --light-bg: #f5f6fa;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --gradient-1: #1e3799;
    --gradient-2: #0c2461;
    --gradient-3: #4a69bd;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
    min-height: 100vh;
    top: 0 !important;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    will-change: opacity;
    animation: gradientMove 15s ease infinite;
    background: radial-gradient(circle at center,
            var(--gradient-1) 0%,
            var(--gradient-2) 45%,
            var(--gradient-3) 100%);
}

.about-section .gradient-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    z-index: -1;
    overflow: hidden;
    filter: blur(20px);
}

.about-section .gradient-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
            var(--gradient-1) 0%,
            var(--gradient-2) 35%,
            var(--gradient-3) 70%);
    animation: aboutGradientMove 10s ease infinite;
    opacity: 0.7;
}

@keyframes aboutGradientMove {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 5%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateZ(0);
    will-change: background-color;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.header.scrolled {
    background: rgba(14, 30, 73, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.3rem 5%;
}

.header.scrolled .logo-image {
    max-height: 50px;
}

.logo {
    padding: 10px 0;
    flex: 0 0 auto;
}

.logo-image {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

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

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    letter-spacing: 0.3px;
}

.dropdown .nav-link::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin-left: 8px;
    margin-top: -4px;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.nav-link i {
    display: none;
}

.nav-link:not(.dropdown .nav-link)::after {
    display: none;
}

.dropdown:hover .nav-link::after {
    transform: rotate(225deg);
    margin-top: 2px;
    opacity: 1;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(14, 30, 73, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(14, 30, 73, 0.95);
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
}

.dropdown-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateX(5px);
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title span {
    display: block;
    width: 100%;
    margin: 0.3rem 0;
    transition: all 0.3s ease;
}

.hero-title span:first-child {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(45deg, var(--white) 30%, var(--accent-color) 70%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.hero-title span:first-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
}

.hero-title span:nth-child(2),
.hero-title span:nth-child(4) {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-title span:nth-child(3) {
    font-size: 2rem;
    margin: 1.2rem 0;
    opacity: 0.9;
    position: relative;
    width: auto;
    padding: 0 3rem;
}

.hero-title span:nth-child(3)::before,
.hero-title span:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
}

.hero-title span:nth-child(3)::before {
    left: 0;
}

.hero-title span:nth-child(3)::after {
    right: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.glow-effect {
    animation: glowing 2s infinite;
}

.services-section {
    padding: 8rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--white), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--white));
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.service-icon i {
    background: linear-gradient(45deg, var(--white), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 60px;
}

.service-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.2rem 0;
    text-align: left;
    padding: 0 0.5rem;
}

.service-features li {
    margin: 0.8rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li:hover {
    transform: translateX(5px);
}

.service-features i {
    margin-right: 0.8rem;
    color: var(--accent-color);
    font-size: 1.2rem;
    background: linear-gradient(45deg, var(--white), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-learn-more {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid var(--white);
    border-radius: 25px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 1rem;
}

.btn-learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white);
    transition: width 0.3s ease;
    z-index: -1;
}

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

.btn-learn-more:hover::before {
    width: 100%;
}

.about-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

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

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: var(--primary-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
    text-align: center;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.decoration-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    border-radius: 50%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-circle::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    background: var(--glass-bg);
    border-radius: 50%;
    z-index: 1;
}

.stat-number {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 5px;
}

.stat-plus {
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    color: var(--white);
    font-size: 1rem;
    display: block;
    margin-top: 10px;
}

.about-cta {
    display: flex;
    gap: 20px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.footer {
    background: linear-gradient(180deg, rgba(14, 30, 73, 0.95), rgba(14, 30, 73, 0.98));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0 15px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.6fr 0.6fr;
    gap: 30px;
    padding: 0 20px;
    position: relative;
}

.footer-section {
    padding: 0 15px;
    position: relative;
}

.footer-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-section:last-child::after {
    display: none;
}

.footer-about {
    padding-right: 30px;
}

.footer-about h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--white), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.footer-about p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info {
    margin-top: 25px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.contact-link i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: white;
    transition: color 0.3s ease;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding-bottom: 8px;
    position: relative;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-section:hover h4::after {
    width: 50px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    position: relative;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(8px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    padding: 5px 0;
}

.footer-social-links a:hover {
    color: var(--accent-color);
    transform: translateX(8px);
}

.footer-social-links i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-social-links a[title="Instagram"]:hover i {
    color: #E1306C;
}

.footer-social-links a[title="WhatsApp"]:hover i {
    color: #25D366;
}

.footer-social-links a[title="Viber"]:hover i {
    color: #665CAC;
}

.flag-icon {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.hero-scroll-indicator span {
    font-size: 0.9rem;
    margin-top: 5px;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    animation: scrollMouse 1.5s infinite;
}

.why-us-section {
    padding: 40px;
    position: relative;
    margin: 40px auto;
    max-width: 1400px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: -1;
}

.why-us-section .container {
    width: 100%;
    margin: 0 auto;
}

.why-us-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.why-us-header {
    flex: 0 0 auto;
    max-width: 300px;
}

.why-us-header .subtitle {
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--white), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-us-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.reasons {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.reason-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.reason-card .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.reason-card:hover .icon {
    transform: scale(1.1);
}

.reason-card .icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.reason-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.reason-card p {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.cart-btn:hover {
    transform: scale(1.1);
}

.goog-te-gadget {
    font-family: var(--font-family) !important;
    color: var(--white) !important;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 8px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: var(--white) !important;
    margin: 0 15px !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
    color: var(--white) !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
    border: none !important;
    color: var(--white) !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9998;
    display: none;
}

.cookie-consent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(17, 25, 40, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 9999;
    display: none;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s ease forwards;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cookie-header i {
    font-size: 1.5rem;
    color: white;
}

.cookie-header h3 {
    margin: 0;
    color: white;
    font-size: 1.2rem;
}

.cookie-content p {
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: white;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-buttons button {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    min-width: 140px;
}

.cookie-buttons .btn.primary {
    background: var(--primary-color);
    border: none;
}

.cookie-buttons .btn.primary:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}

.cookie-buttons .btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-buttons .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.floating-button:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 30px;
    color: white;
}

.whatsapp-button {
    background-color: #25D366;
}

.viber-button {
    background-color: #665CAC;
}

/* Animations */
@keyframes gradientMove {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

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

@keyframes glowing {
    0% {
        box-shadow: 0 0 5px var(--primary-color);
    }

    50% {
        box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--accent-color);
    }

    100% {
        box-shadow: 0 0 5px var(--primary-color);
    }
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive */
@media (max-height: 600px) {
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 1600px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .why-us-grid {
        flex-direction: column;
        gap: 30px;
    }

    .why-us-header {
        text-align: center;
        max-width: none;
    }

    .reasons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .navbar {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-section::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
        align-items: center;
    }

    .header {
        padding: 1rem 5%;
    }

    .logo-image {
        max-height: 50px;
    }

    .hero-title {
        font-size: 1.8rem;
        gap: 0.5rem;
    }

    .hero-title span:first-child {
        font-size: 2.2rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 0.8rem !important;
    }

    .hero-title span:first-child::after {
        width: 80px;
    }

    .hero-title span:nth-child(2) {
        font-size: 1.4rem !important;
        letter-spacing: 1px !important;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 10px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .about-section {
        padding: 60px 0;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .why-us-section {
        padding: 30px;
        margin: 20px;
    }

    .reasons {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-us-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-section {
        padding: 0 10px;
    }

    .footer-section h4 {
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-link {
        justify-content: center;
    }

    .contact-link:hover {
        transform: translateY(-2px);
    }

    .footer-links a:hover {
        transform: translateY(-2px);
    }

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

    .footer-social-links a:hover {
        transform: translateY(-2px);
    }
}

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

    .service-card {
        padding: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-cta {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .why-us-section {
        padding: 20px;
        margin: 15px;
    }

    .reason-card {
        padding: 20px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer {
        padding: 25px 0 15px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        width: 95%;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}