/*-----------------------------------------------*/
/*---------------General-------------------------*/
/*-----------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Code Pro', monospace;
    /*font-family: 'Fira Code', monospace;*/
    /*font-family: 'JetBrains Mono', monospace;*/
    /*font-family: 'IBM Plex Mono', monospace;*/
}

body {
    background-color: #ebebeb;
    color: #262525;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
.logo-text{
    font-size: 20px;
}
.logo-container{
    display: flex;
    gap: 5px;
}
img.logo {
    height:20px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a, .logo-link, .service-detail-link {
    text-decoration: none;
}
.nav-links a, .logo-link {
    color: white;
}
.service-detail-link {
    color:#262525;
}
.get-in-touch-container{
    margin-top: 30px;
}
.get-in-touch {
    border: 1px solid black;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: black;
}
.get-in-touch:hover{
    background: #262525;
    color:#fff;
}

/* Hero Section */
.header-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.header-text-content {
    width: 60%;
    min-width: 300px;
    flex: 1;
    padding-right: 30px;
    margin-bottom: 30px;
}

.header-image-container {
    position: relative;
    width: 300px;
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: 100%;
    display: flex;
}

.page-title {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-subtitle {
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.5
}
/*-----------------------------------------------*/
/*---------------Header & Footer-----------------*/
/*-----------------------------------------------*/
header {
    background-color: #262525;
    color: white;
    padding: 20px 0;
}
/* Footer */
footer {
    background-color: #262525;
    color: white;
    padding: 40px 20px 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-info {
    flex: 1;
    min-width: 250px;
}
.footer-copyright {
    min-width: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-heading {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: normal;
}

.footer-address,
.footer-contact {
    line-height: 1.6;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 1;
}
.swiss-made-icon{
    width:125px;
    margin-bottom: 20px;
}
.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
/*-----------------------------------------------*/
/*---------------Page Index----------------------*/
/*-----------------------------------------------*/
.learn-more {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 30px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
}
.learn-more:hover{
    background-color: #fff;
    border: 1px solid white;
    color: #262525;
}
/*SVG Shape*/
.svg-box-tl,
.svg-box-br,
.svg-circle-tr,
.svg-circle-bl {
    position: absolute;
    width: 50%;
    height: 50%;
    background-color: white;
}

.svg-box-tl {
    top: 0;
    left: 0;
}

.svg-box-br {
    bottom: 0;
    right: 0;
}

.svg-circle-tr {
    top: 0;
    right: 0;
    border-radius: 50%;
}

.svg-circle-bl {
    bottom: 0;
    left: 0;
    border-radius: 50%;
}

/* Services Section */
.services {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 20px;
}

.service-icon {
    background-color: #e6e6e6;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-content p {
    color: #555;
    line-height: 1.4;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 20px;
    text-align: center;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-content q {
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.3;
    display: block;
    margin-bottom: 20px;
}
.project-testimonial-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.project-testimonial-content{
    font-size: 15px;
    line-height: 1.3;
    display: block;
    margin: 20px 0 20px 0;
}
.project-testimonial-author{
    margin-top: 20px;
    text-align: left;
}
.testimonial-author {
    margin-top: 20px;
}
/*-----------------------------------------------*/
/*---------------Page Services-------------------*/
/*-----------------------------------------------*/
.header-illustration{
    width: 200px;
    height: 200px;
    margin: auto auto;
}
.services {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-icon {
    background-color: #e6e6e6;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.services-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.services-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.service-detail {
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.service-detail img {
    width: 50px;
    flex-shrink: 0;
}

.service-text h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}
.service-text h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.service-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom:5px;
}
/*-----------------------------------------------*/
/*---------------Page Contact--------------------*/
/*-----------------------------------------------*/
.contact-info {
    margin-top: 20px;
}

.contact-block {
    margin-bottom: 30px;
}

.contact-label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    color: #ccc;
}

.contact-details {
    font-size: 18px;
    line-height: 1.8;
}

.map-section {
    background-color: #262525;
    color: white;
    padding: 40px 20px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    flex-wrap: nowrap;
}

.map-text {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 20px;
}

.map-embed {
    flex: 0 0 60%;
}

.map-embed iframe {
    width: 50vw;
    min-height: 400px;
    border: 0;
    filter: grayscale(100%) invert(90%) contrast(120%);
}

input, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
.form-section {
    background-color: white;
    color: #262525;
    padding: 60px 20px;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.form-content {
    flex: 0 0 100%;
    padding-left: 40px;
}

.form-illustration {
    flex: 0 0 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

form {
    display: grid;
    gap: 20px;
}
button {
    background-color: #fff;
    color: #262525;
    border:1px solid #262525;
    padding: 14px 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: fit-content;
}
button:hover{
    background-color: #262525;
    color: #fff;
}
/*-----------------------------------------------*/
/*---------------Responsive----------------------*/
/*-----------------------------------------------*/
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    nav {
        padding: 0 20px;
        gap: 20px;
        align-items: center;
        margin-bottom:40px;
    }

    .nav-links {
        margin: 10px 0;
    }

    .header-text-content {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }

    .map-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .map-text, .map-embed {
        flex: 1 1 100%;
    }

    .map-embed iframe {
        height: 300px;
    }

    .form-container {
        flex-direction: column;
    }

    .form-content, .form-illustration {
        flex: 1 1 100%;
    }

    .form-illustration {
        margin-top: 30px;
        max-height: 300px;
    }
    .header-image-container, .header-illustration{
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    .header-text-container{
        display: block;
    }
    .services-section{
        padding-left: 30px;
        padding-right: 30px;
    }
    .map-section{
        padding-top:20px;
    }
    .map-embed iframe{
        width: 90vw;
    }
}

@media (max-width: 600px) {
    nav{
        flex-direction: column;
        margin-bottom:20px;
    }
    .page-title {
        font-size: 36px;
    }

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

    .service-detail img {
        margin: 0 auto 0px;
        width: 80px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    .header-image-container, .header-illustration{
        width: 150px;
        height: 150px;
    }
    .services{
        padding-left: 30px;
        padding-right: 30px;
    }
    .nav-links{
        gap:60px;
    }
    .map-section{
        padding-top:0;
    }
    .map-text{
        padding:0;
    }
    .footer-content{
        flex-direction:column-reverse;
    }
    .footer-info{
        display: none;
    }

}
