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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Navigation */
.navbar {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B2F44;
}

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

.nav-link {
    text-decoration: none;
    color: #0B2F44;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #DE5B2E;
}

.nav-language {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: 2px solid #0B2F44;
    color: #0B2F44;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn.active,
.lang-btn:hover {
    background: #0B2F44;
    color: #FFFFFF;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #0B2F44;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F5F5 0%, #E0E0E0 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0B2F44;
    margin-bottom: 16px;
    line-height: 1.25;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #333333;
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-catalog {
    margin-bottom: 32px;
}

.catalog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #DE5B2E 0%, #C4451E 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(222, 91, 46, 0.3);
}

.catalog-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 91, 46, 0.4);
    background: linear-gradient(135deg, #C4451E 0%, #A63A1A 100%);
}

.catalog-link i {
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #DE5B2E;
}

.stat-label {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #FFFFFF;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B2F44;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background-color: #f8f8f8;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 24px;
    position: relative;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0B2F44;
    margin-bottom: 0;
}

.service-description {
    color: #666666;
    line-height: 1.6;
    width: 100%;
}

.show-more-btn {
    background: #DE5B2E;
    color: #FFFFFF;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.show-more-btn:hover {
    background: #C04A1F;
    transform: scale(1.1);
}

/* References Section */
.references {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.reference-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E9ECEF;
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.reference-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.reference-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0B2F44 0%, #DE5B2E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
}

.reference-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0B2F44;
    margin-bottom: 4px;
}

.reference-info p {
    font-size: 0.9rem;
    color: #6C757D;
    margin: 0;
}

.reference-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.reference-rating i {
    color: #FFD700;
    font-size: 1rem;
}

.reference-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
    font-style: italic;
}

.reference-service {
    display: flex;
    justify-content: flex-end;
}

.service-tag {
    background: linear-gradient(135deg, #DE5B2E 0%, #C4451E 100%);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Info Section */
.info {
    padding: 80px 0;
    background: #F5F5F5;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.info-box {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0B2F44;
    margin-bottom: 24px;
    text-align: center;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333333;
}

.contact-item i {
    color: #DE5B2E;
    width: 20px;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #E0E0E0;
}

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

.day {
    font-weight: 500;
    color: #0B2F44;
}

.time {
    color: #666666;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #FFFFFF;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.close {
    color: #666666;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1001;
    cursor: pointer;
}

.close:hover {
    color: #DE5B2E;
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid #E0E0E0;
}

.modal-header h2 {
    color: #0B2F44;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-body {
    padding: 24px;
}

.carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.carousel-slides {
    display: flex;
    width: 100%;
    transition: transform 0.3s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 400px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    background: rgba(11, 47, 68, 0.8);
    color: #FFFFFF;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(11, 47, 68, 1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E0E0E0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #DE5B2E;
}

/* Footer */
.footer {
    background: #0B2F44;
    color: #FFFFFF;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #DE5B2E;
}

.footer-logo-container {
    background: #FFFFFF;
    padding: 12px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: #E0E0E0;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #DE5B2E;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #4A8F97;
    color: #E0E0E0;
}

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

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

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }
    
    .catalog-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .references-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .carousel-slide {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        margin: 0 8px;
    }

    .info-box {
        padding: 24px;
    }
}

/* GDPR Dialog Styles */
.gdpr-dialog {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    background: rgba(11, 47, 68, 0.98);
    color: #fff;
    padding: 24px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}
.gdpr-content {
    max-width: 700px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.gdpr-content p {
    margin: 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}
.gdpr-content a {
    color: #DE5B2E;
    text-decoration: underline;
}
.gdpr-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.gdpr-btn {
    background: #DE5B2E;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.gdpr-btn:hover {
    background: #C04A1F;
}
.gdpr-secondary {
    background: #fff;
    color: #0B2F44;
    border: 1px solid #DE5B2E;
}
.gdpr-secondary:hover {
    background: #f5f5f5;
}
@media (max-width: 600px) {
    .gdpr-content {
        padding: 0 8px;
    }
    .gdpr-content p {
        font-size: 0.95rem;
    }
    .gdpr-actions {
        flex-direction: column;
        gap: 8px;
    }
} 