/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #00e5ff 0%, #3a0ca3 100%);
    min-height: 100vh;
    overflow-x: hidden;
    animation: fadeIn 0.5s ease-in-out;
}

/* Loading animation replacement */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: bold;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(58, 12, 163, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Enhanced header shadow on scroll - static since we can't detect scroll in CSS */
.header::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInLeft 1s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #fff700;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff2e63;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hide checkbox but keep accessibility */
.nav-toggle-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Focus styles for accessibility */
.nav-toggle-checkbox:focus + .nav-toggle {
    outline: 2px solid #fff700;
    outline-offset: 2px;
}

/* Enhanced focus styles for all interactive elements */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
.btn:focus {
    outline: 2px solid #fff700;
    outline-offset: 2px;
}

/* Remove default focus outline and add custom */
a:focus,
button:focus,
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 247, 0, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Buttons with CSS-only effects */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* CSS-only ripple effect */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff2e63, #ff6b35);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #d91e52, #e55722);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 46, 99, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #3a0ca3;
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(58, 12, 163, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.01);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #00e5ff 0%, #3a0ca3 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease;
}

.about-image {
    animation: fadeInRight 1s ease;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    font-size: 4rem;
    color: #fff700;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(199, 125, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(199, 125, 255, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
}

.service-card:hover {
    border-color: #ff2e63;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 46, 99, 0.2);
}

.service-image img {
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Order Form Section */
.order-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #ffffff;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select option {
    background: #3a0ca3;
    color: #ffffff;
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff2e63;
    box-shadow: 0 0 15px rgba(255, 46, 99, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    flex: 1;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    animation: fadeInUp 1s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(199, 125, 255, 0.5);
    box-shadow: 0 5px 20px rgba(199, 125, 255, 0.2);
}

/* Hide radio buttons */
.faq-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Question styling */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: rgba(199, 125, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(199, 125, 255, 0.3);
}

.faq-question h3 {
    margin: 0;
    flex: 1;
    font-size: 1.2rem;
    color: #ffffff;
}

/* Plus/Cross icon */
.faq-icon {
    font-size: 2rem;
    font-weight: bold;
    color: #fff700;
    transition: all 0.4s ease;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 247, 0, 0.2);
    margin-left: 1rem;
}

/* Answer container */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
}

.faq-content {
    padding: 0 2rem;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
}

.faq-content p {
    margin: 1.5rem 0;
    line-height: 1.6;
    color: #ffffff;
}

/* Active state - when radio is checked */
.faq-radio:checked + .faq-question {
    background: rgba(199, 125, 255, 0.4);
}

.faq-radio:checked + .faq-question .faq-icon {
    transform: rotate(45deg);
    background: rgba(255, 46, 99, 0.3);
    color: #ff2e63;
}

.faq-radio:checked + .faq-question + .faq-answer {
    max-height: 200px;
    padding: 1rem 0;
}

.faq-radio:checked + .faq-question + .faq-answer .faq-content {
    opacity: 1;
}

/* Focus styles for accessibility */
.faq-radio:focus + .faq-question {
    outline: 2px solid #fff700;
    outline-offset: 2px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .faq-icon {
        font-size: 1.5rem;
        width: 25px;
        height: 25px;
        margin-left: 0.5rem;
    }
    
    .faq-content {
        padding: 0 1.5rem;
    }
    
    .faq-radio:checked + .faq-question + .faq-answer {
        max-height: 250px;
    }
}

/* Testimonials Section */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.testimonial {
    padding: 4rem 3rem;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-weight: bold;
    color: #fff700;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    animation: fadeInLeft 1s ease;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-map {
    animation: fadeInRight 1s ease;
}

.contact-map img,
.contact-map iframe {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
    height: 400px;
}

/* Footer */
.footer {
    background: rgba(58, 12, 163, 0.95);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #fff700;
    margin-bottom: 1.5rem;
}

.legal-links {
    list-style: none;
}

.legal-links li {
    margin-bottom: 0.5rem;
}

.legal-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info .icon {
    font-size: 1.5rem;
    color: #fff700;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(58, 12, 163, 0.98);
    backdrop-filter: blur(15px);
    z-index: 10000;
    transition: bottom 0.5s ease;
    border-top: 3px solid #ff2e63;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content h3 {
    color: #fff700;
    margin: 0;
}

.cookie-content p {
    margin: 0.5rem 0 0;
    flex: 1;
}

.cookie-content a {
    color: #fff700;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(58, 12, 163, 0.98);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(15px);
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
        max-height: calc(100vh - 100%);
        overflow-y: auto;
    }

    /* Overlay for clicking outside */
    .nav-toggle-checkbox:checked ~ .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    /* When checkbox is checked, show menu */
    .nav-toggle-checkbox:checked ~ .nav-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hamburger animation when checked */
    .nav-toggle-checkbox:checked + .nav-toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle-checkbox:checked + .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle-checkbox:checked + .nav-toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Mobile menu link styles */
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        text-align: center;
    }

    .nav-menu .nav-link:hover {
        color: #fff700;
        background: rgba(255, 247, 0, 0.1);
        border-radius: 8px;
        margin: 0 1rem;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .advantages-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-form {
        padding: 2rem;
        margin: 0 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .advantage-card,
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-map iframe {
        height: 300px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-popup {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        page-break-inside: avoid;
    }
} 