/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
    margin-top: 70px;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e9ecef;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-eu {
    font-weight: 400;
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #3498db;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.container {
    width: 100%;
    background: white;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    padding: 100px 40px 80px;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="5" r="0.5" fill="white" opacity="0.1"/><circle cx="80" cy="15" r="0.3" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.header-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.header-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Services Overview */
.services {
    padding: 80px 40px 60px;
    text-align: center;
    background: white;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.services-intro p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 40px;
    background: white;
    border-bottom: 1px solid #f8f9fa;
}

.service-detail.alt {
    background: #f8f9fa;
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.service-header h3 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-info h4 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.detailed-list {
    list-style: none;
    margin-bottom: 40px;
}

.detailed-list li {
    padding: 15px 0;
    border-bottom: 1px solid #f1f3f4;
    font-size: 1rem;
    line-height: 1.6;
}

.detailed-list li:last-child {
    border-bottom: none;
}

.detailed-list strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3498db;
}

.service-detail.alt .step {
    background: #ffffff;
}

.step-number {
    background: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Support Features */
.support-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 3px solid #e74c3c;
}

.feature-box h5 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-box p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Design Features */
.design-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Web Steps */
.web-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* Strategy Steps */
.strategy-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.strategy-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 3px solid #27ae60;
}

.strategy-item h5 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.strategy-item p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Mission Section */
.mission {
    padding: 80px 40px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.mission p {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.95;
}

/* Contact Section */
.contact {
    padding: 80px 40px;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-header p {
    font-size: 1.2rem;
    color: #6c757d;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.company-details {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f4;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.detail-item span {
    color: #6c757d;
    font-size: 0.95rem;
}

.contact-methods {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.contact-link .icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.contact-link div {
    display: flex;
    flex-direction: column;
}

.contact-link strong {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-link span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-container h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #3498db;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.form-note {
    text-align: center;
    margin-top: 15px;
    color: #6c757d;
    font-size: 0.85rem;
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px;
}

.footer p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .header {
        padding: 80px 20px 60px;
    }

    .header h1 {
        font-size: 2.2rem;
    }

    .header-subtitle {
        font-size: 1.1rem;
    }

    .header-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .services {
        padding: 60px 20px 40px;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .service-detail {
        padding: 60px 20px;
    }

    .service-header h3 {
        font-size: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-features,
    .design-features,
    .web-steps,
    .strategy-steps {
        grid-template-columns: 1fr;
    }

    .mission {
        padding: 60px 20px;
    }

    .mission h3 {
        font-size: 2rem;
    }

    .mission p {
        font-size: 1.1rem;
    }

    .contact {
        padding: 60px 20px;
    }

    .contact-header h3 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        margin-top: 70px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .services-intro h2,
    .service-header h3,
    .mission h3,
    .contact-header h3 {
        font-size: 1.8rem;
    }

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

    .contact-form-container {
        padding: 20px 15px;
    }
}

/* Legal Content Styles */
.legal-content {
    padding: 80px 40px;
    background: white;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-container p {
    margin-bottom: 15px;
    color: #444;
    font-size: 1rem;
}

.legal-container ul {
    margin: 15px 0 15px 30px;
    color: #444;
}

.legal-container li {
    margin-bottom: 8px;
}

.contact-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin: 20px 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.last-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.last-updated p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Responsive Legal Content */
@media (max-width: 768px) {
    .legal-content {
        padding: 60px 20px;
    }

    .legal-container h2 {
        font-size: 1.6rem;
    }

    .legal-container h3 {
        font-size: 1.2rem;
    }

    .contact-box {
        padding: 15px;
    }
}

/* Smooth scrolling offset for fixed navigation */
@media (min-width: 769px) {
    section[id] {
        scroll-margin-top: 70px;
    }
}