/* Reset & 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-color: #2A0A18;
    padding-top: 4rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #FFFFFF;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #DDD6C4;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #C6FF00 0%, #003366 100%);
    color: #FFFFFF;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 255, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #C6FF00;
    border: 2px solid #C6FF00;
}

.btn-secondary:hover {
    background: #C6FF00;
    color: #2A0A18;
}

/* Header */
.header {
    background: rgba(42, 10, 24, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(198, 255, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
}

.logo img {
    margin-right: 0.5rem;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav a {
    color: #DDD6C4;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #C6FF00;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 51, 102, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    padding: 1rem;
    transition: opacity 0.3s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept {
    background: linear-gradient(135deg, #C6FF00 0%, #003366 100%);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(198, 255, 0, 0.3);
}

.cookie-info {
    color: #C6FF00;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-info:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(42, 10, 24, 0.8), rgba(0, 51, 102, 0.8));
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #C6FF00 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #DDD6C4;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3px;
    background: linear-gradient(135deg, #C6FF00 0%, #003366 100%);
}

/* Services */
.services {
    background: rgba(0, 51, 102, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(0, 51, 102, 0.2);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(198, 255, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(198, 255, 0, 0.3);
}

.service-image {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    color: #DDD6C4;
}

.about-image {
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.about-features {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 51, 102, 0.1);
    border-radius: 5px;
    border-left: 3px solid #C6FF00;
}

.feature-icon {
    color: #C6FF00;
    font-size: 1.5rem;
}

/* Process */
.process {
    background: rgba(0, 51, 102, 0.1);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #C6FF00 0%, #003366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: bold;
}

.process-steps {
    counter-reset: step-counter;
}

.process-step h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: rgba(0, 51, 102, 0.2);
    padding: 2rem;
    border-radius: 10px;
    border-left: 3px solid #C6FF00;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 1rem;
    font-size: 4rem;
    color: #C6FF00;
    opacity: 0.5;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #DDD6C4;
}

.review-author {
    color: #C6FF00;
    font-weight: 600;
}

/* Contact Form */
.contact {
    background: rgba(0, 51, 102, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: rgba(0, 51, 102, 0.2);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(198, 255, 0, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #DDD6C4;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(198, 255, 0, 0.3);
    border-radius: 5px;
    background: rgba(42, 10, 24, 0.5);
    color: #FFFFFF;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #C6FF00;
    box-shadow: 0 0 0 2px rgba(198, 255, 0, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #C6FF00;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #C6FF00;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #DDD6C4;
}

/* Footer */
.footer {
    background: rgba(0, 51, 102, 0.2);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(198, 255, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #C6FF00;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #DDD6C4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #C6FF00;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(198, 255, 0, 0.1);
}

.footer-bottom p {
    color: #DDD6C4;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 4rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .header {
        padding: 0.3rem 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo a {
        font-size: 1rem;
    }
    
    .logo img {
        width: 28px;
        height: 28px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .nav a {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
        border-radius: 20px;
        background: rgba(198, 255, 0, 0.1);
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 3.5rem;
    }
    
    .header {
        padding: 0.3rem 0;
    }
    
    .header-content {
        gap: 0.3rem;
    }
    
    .logo a {
        font-size: 1rem;
    }
    
    .logo img {
        width: 24px;
        height: 24px;
    }
    
    .nav ul {
        gap: 0.3rem;
    }
    
    .nav a {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
    
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .header-cta .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
button:focus,
input:focus,
select:focus,
a:focus {
    outline: 2px solid #C6FF00;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .cookie-banner,
    .footer {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        padding-top: 0 !important;
    }
} 