/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #1ECBE1;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #C7F464;
    text-shadow: 0 0 10px #C7F464;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #1ECBE1, #C7F464);
    color: #000;
    box-shadow: 0 10px 30px rgba(30, 203, 225, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 203, 225, 0.5);
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: #1ECBE1;
    border: 2px solid #1ECBE1;
}

.btn-secondary:hover {
    background: #1ECBE1;
    color: #000;
    box-shadow: 0 10px 30px rgba(30, 203, 225, 0.3);
}

/* Container Classes */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(30, 203, 225, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo svg {
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.1);
}

.logo-text {
    color: #1ECBE1;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #1ECBE1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #1ECBE1, #C7F464);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-mobile span {
    width: 25px;
    height: 3px;
    background: #1ECBE1;
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(30, 203, 225, 0.1) 0%, transparent 70%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-accent {
    background: linear-gradient(45deg, #1ECBE1, #C7F464);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(30, 203, 225, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30, 203, 225, 0.2);
    border: 2px solid rgba(30, 203, 225, 0.3);
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(199, 244, 100, 0.05) 0%, transparent 100%);
}

.mission-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-text {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 60px;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    background: rgba(30, 203, 225, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(30, 203, 225, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    background: rgba(30, 203, 225, 0.15);
    box-shadow: 0 20px 40px rgba(30, 203, 225, 0.2);
}

.value-item h3 {
    color: #C7F464;
    margin-bottom: 15px;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.advantages h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #1ECBE1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: linear-gradient(135deg, rgba(30, 203, 225, 0.1) 0%, rgba(199, 244, 100, 0.05) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(30, 203, 225, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 203, 225, 0.1), transparent);
    transition: left 0.5s ease;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 203, 225, 0.3);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage-card h3 {
    color: #1ECBE1;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(199, 244, 100, 0.05) 0%, transparent 70%);
}

.services h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #C7F464;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(30, 203, 225, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #1ECBE1;
    box-shadow: 0 25px 50px rgba(30, 203, 225, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: #1ECBE1;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 5px 0;
    color: #cccccc;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C7F464;
    font-weight: bold;
}

.service-price {
    background: linear-gradient(45deg, #1ECBE1, #C7F464);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #1ECBE1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(30, 203, 225, 0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #C7F464;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 203, 225, 0.15);
    box-shadow: 0 15px 30px rgba(30, 203, 225, 0.2);
}

.testimonial-content p {
    font-style: italic;
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #1ECBE1;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #999999;
    font-size: 0.9rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(30, 203, 225, 0.05) 0%, transparent 70%);
}

.process h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #C7F464;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1ECBE1, #C7F464);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(30, 203, 225, 0.3);
}

.process-step h3 {
    color: #1ECBE1;
    margin-bottom: 15px;
}

.process-step p {
    color: #cccccc;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(199, 244, 100, 0.05) 0%, rgba(30, 203, 225, 0.05) 100%);
}

.contact h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #1ECBE1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    color: #C7F464;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(30, 203, 225, 0.1);
    border-radius: 10px;
    border-left: 4px solid #1ECBE1;
}

.contact-item strong {
    color: #1ECBE1;
    display: block;
    margin-bottom: 10px;
}

/* Form Styles */
.contact-form {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(30, 203, 225, 0.2);
}

.form-error {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #1ECBE1;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(30, 203, 225, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1ECBE1;
    box-shadow: 0 0 20px rgba(30, 203, 225, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: #000;
    color: #fff;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-group label {
    display: block;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #C7F464;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.map-info {
    background: rgba(30, 203, 225, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(30, 203, 225, 0.3);
    color: #ffffff;
}

.map-info h3 {
    color: #1ECBE1;
    margin-bottom: 20px;
}

.google-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30, 203, 225, 0.2);
}

.google-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(30, 203, 225, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #1ECBE1;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    color: #C7F464;
    display: block;
    margin-bottom: 5px;
}

.legal-links ul,
.newsletter ul {
    list-style: none;
}

.legal-links li,
.newsletter li {
    margin-bottom: 10px;
}

.legal-links a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #1ECBE1;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(30, 203, 225, 0.1);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
    color: #cccccc;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #1ECBE1;
    border-radius: 15px;
    padding: 20px;
    z-index: 10000;
    backdrop-filter: blur(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent.hidden {
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h4 {
    color: #1ECBE1;
    margin-bottom: 10px;
}

.cookie-text p {
    color: #cccccc;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #1ECBE1;
    color: #000;
}

.btn-accept:hover {
    background: #C7F464;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: #cccccc;
    border: 1px solid #cccccc;
}

.btn-reject:hover {
    background: #cccccc;
    color: #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-container {
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .service-card {
        margin: 0 10px;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(30, 203, 225, 0.05) 0%, transparent 100%);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(30, 203, 225, 0.2);
}

.legal-content h1 {
    color: #1ECBE1;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #cccccc;
    font-style: italic;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(30, 203, 225, 0.2);
    padding-bottom: 20px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #C7F464;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-left: 4px solid #C7F464;
    padding-left: 15px;
}

.legal-section h3 {
    color: #1ECBE1;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
}

.legal-section p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section li {
    color: #cccccc;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: rgba(30, 203, 225, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #1ECBE1;
    margin: 20px 0;
}

.contact-info p {
    margin: 0;
    color: #ffffff;
}

.legal-section a {
    color: #1ECBE1;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #C7F464;
}

/* Legal Pages Mobile Styles */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
}

/* Cookies Page Specific Styles */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(30, 203, 225, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(30, 203, 225, 0.2);
}

.cookies-table th {
    background: rgba(30, 203, 225, 0.2);
    color: #1ECBE1;
    font-weight: 600;
}

.cookies-table td {
    color: #cccccc;
}

.browser-links {
    background: rgba(199, 244, 100, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #C7F464;
    margin: 20px 0;
}

.browser-links h4 {
    color: #C7F464;
    margin-bottom: 15px;
}

.browser-links ul {
    margin: 0;
}

.browser-links li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .cookies-table {
        font-size: 0.9rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .cookies-table {
        font-size: 0.8rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 6px 8px;
    }
}

/* Conditions Page Specific Styles */
.company-info {
    background: rgba(30, 203, 225, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #1ECBE1;
    margin: 20px 0;
}

.company-info p {
    margin: 0;
    color: #ffffff;
    line-height: 1.8;
}

/* Disclaimer Page Specific Styles */
.disclaimer-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-top: 40px;
    text-align: center;
}

.disclaimer-notice h2 {
    color: #ffc107;
    border: none;
    padding: 0;
    margin-bottom: 15px;
}

.disclaimer-notice p {
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
} 