/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1f1f1f;
    background: linear-gradient(135deg, #00c9a7 0%, #6e44ff 100%);
    min-height: 100vh;
    padding-top: 4rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #1f1f1f;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo svg {
    width: 32px;
    height: 32px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00c9a7;
}

/* Mobile Menu Toggle (CSS Only) */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0.8rem;
    gap: 0.3rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-button span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:checked + .mobile-menu-button span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle:checked + .mobile-menu-button span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle:checked + .mobile-menu-button span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-button:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    margin: 2rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff6f3c 0%, #ff3c6f 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    margin: 2rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #1f1f1f;
    text-align: left;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.about-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00c9a7;
    font-weight: bold;
}

.about-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    margin: 2rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1f1f1f;
    margin-bottom: 1rem;
}

.service-card p {
    color: #1f1f1f;
}

/* Advantages Section */
.advantages-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    margin: 2rem 0;
}

.advantages-section h2 {
    color: #1f1f1f;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: #1f1f1f;
    margin-bottom: 1rem;
}

.advantage-item p {
    color: #1f1f1f;
}

/* Case Studies Section */
.case-studies-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    margin: 2rem 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.case-study:hover {
    transform: translateY(-10px);
}

.case-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-content {
    padding: 2rem;
}

.case-content h3 {
    color: #1f1f1f;
    margin-bottom: 1rem;
}

.case-content p {
    color: #1f1f1f;
    margin-bottom: 1rem;
}

.case-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.result-label {
    font-weight: 600;
    color: #00c9a7;
}

.result-text {
    color: #1f1f1f;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    margin: 2rem 0;
}

.testimonials-section h2 {
    color: #1f1f1f;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 2rem;
    border-left: 4px solid #00c9a7;
}

.testimonial-content p {
    font-style: italic;
    color: #1f1f1f;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: #1f1f1f;
    display: block;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    margin: 2rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #fff700;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #00c9a7;
}

.contact-item p {
    color: #ffffff;
    margin: 0;
}

/* Form Styles */
.contact-form-container h3 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #fff700, #00c9a7);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.contact-form::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6f3c, #ff3c6f);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f1f1f;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00c9a7;
}

.form-checkboxes {
    margin: 2rem 0;
}

.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 {
    font-size: 0.9rem;
    color: #1f1f1f;
    margin-bottom: 0;
}

.checkbox-group a {
    color: #00c9a7;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-button {
    background: linear-gradient(135deg, #ff6f3c 0%, #ff3c6f 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #00c9a7;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #00c9a7;
}

.legal-links {
    list-style: none;
}

.legal-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1rem;
    z-index: 1000;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content h3 {
    margin: 0;
    font-size: 1.2rem;
}

.cookie-content p {
    margin: 0;
    color: #ffffff;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept {
    background: linear-gradient(135deg, #ff6f3c 0%, #ff3c6f 100%);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cookie-accept:hover {
    transform: translateY(-2px);
}

.cookie-info {
    color: #00c9a7;
    text-decoration: none;
}

.cookie-info:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 4rem;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        gap: 1rem;
        justify-content: space-between;
    }
    
    .logo {
        font-size: 1.1rem;
        z-index: 1001;
    }
    
    .logo svg {
        width: 30px;
        height: 30px;
    }
    
    /* Mobile Navigation */
    .nav {
        position: relative;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(31, 31, 31, 0.95) 100%);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        border: 2px solid rgba(0, 201, 167, 0.3);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    }
    
    .mobile-menu-toggle:checked ~ .nav-list {
        transform: translateX(0);
    }
    
    .nav-list li {
        width: auto;
        text-align: center;
        padding: 0;
        border-bottom: none;
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 2rem;
        transition: background-color 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(0, 201, 167, 0.2);
    }
    
    .mobile-menu-button {
        display: flex;
        z-index: 1001;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 0.5rem;
        padding: 0.8rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 3.5rem;
    }
    
    .header {
        padding: 0.4rem 0;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo svg {
        width: 26px;
        height: 26px;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
    
    .mobile-menu-button span {
        width: 22px;
        height: 2.5px;
    }
    
    .hero {
        padding: 1.5rem 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
} 