* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}
@keyframes scroll-pattern {
    from {
        background-position-x: 0;
    }
    to {
        background-position-x: 10px;
    }
}
.ikon-mesafe {
  margin-right: 5px;
}
.header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    border-bottom: 5px solid #ffc107;
    position: relative;
    overflow: hidden;
}
.header-animation-bar {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: linear-gradient(
        to right,
        #ffc107 5px,
        transparent 5px
    );
    background-size: 10px 5px;
    animation: scroll-pattern 1s linear infinite;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-left-spacer,
.header-language {
    flex-grow: 1;
    flex-basis: 0;
}
.header-language {
    text-align: right;
    font-size: 1em;
}
.lang-link {
    color: white;
    text-decoration: none;
    padding: 0 5px;
    font-weight: 700;
    transition: color 0.2s;
}
.lang-link.active {
    color: #ffc107;
    font-weight: 900;
}
.lang-link:hover {
    color: #ffc107;
}
.lang-separator {
    color: #555;
}
.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #ffc107;
    margin: 0;
    animation: neon-glow 1.5s ease-in-out infinite alternate;
}
@keyframes neon-glow {
    0% {
        text-shadow: 0 0 5px #ffc107, 0 0 10px #ffc107, 0 0 15px #ffc107, 0 0 20px #ffc107;
    }
    50% {
        text-shadow: 0 0 10px #ffc107, 0 0 20px #ffc107, 0 0 30px #ffc107, 0 0 40px #ffc107, 0 0 50px rgba(255, 193, 7, 0.5);
    }
    100% {
        text-shadow: 0 0 5px #ffc107, 0 0 10px #ffc107, 0 0 15px #ffc107, 0 0 20px #ffc107;
    }
}
.hero-section {
    color: white;
    text-align: center;
    padding: 80px 20px;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
}
.hero-left {
    flex-shrink: 0;
    text-align: center;
}
.hero-taxi-image {
    width: 500px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 0 15px rgba(255, 255, 0, 0.7));
}
.hero-divider {
    width: 2px;
    height: 150px;
    background-color: #ffc107;
    margin: 0 20px;
}
.hero-right {
    text-align: center;
    flex-grow: 1;
}
.hero-section h2 {
    font-size: 2.3em;
    margin-bottom: 15px;
    color: #ffc107;
}
.hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: #ffc107;
    color: #333;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s;
    flex-grow: 1;
    max-width: 300px;
}
.cta-button:hover {
    background-color: #e0a800;
}
.button-text-container {
    display: flex;
    align-items: center;
    height: 100%;
}
.whatsapp-button {
    background-color: #25d366;
    color: white !important;
    border: 2px solid #25d366;
    padding: 15px 25px;
}
.whatsapp-button:hover {
    background-color: #128c7e;
}
.services-section, .contact-section {
    padding: 60px 20px;
    text-align: center;
}
.services-section h3, .contact-section h3 {
    margin-bottom: 40px;
    font-size: 2em;
    color: #333;
}
.service-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}
.card .service-icon {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  display: block;
  margin: 0 0 15px 0;
  border-radius: 6px;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    min-width: 250px;
    transition: transform 0.3s;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-5px);
    border-top: 3px solid #ffc107;
}
.card h4 {
    color: #ffc107;
    margin-bottom: 10px;
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}
@media (max-width: 768px) {
  .container {
        width: 95%;
        padding: 10px 0;
    }
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    .hero-right {
        order: 1;
        text-align: center;
    }
    .hero-divider {
        width: 150px;
        height: 2px;
        margin: 20px 0;
        order: 2;
    }
    .hero-left {
        order: 3;
    }
    .hero-right h2 {
        font-size: 2em;
    }
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .cta-button {
        width: 90%;
        max-width: none;
    }
    .hero-taxi-image {
      width: 80%;
        max-width: 300px;
        height: auto;
    }
    .header .container {
        flex-direction: column;
    }
    .header-language {
        text-align: center;
        padding-top: 5px;
        padding-bottom: 5px;
        order: 3;
    }
    .logo {
        font-size: 1.7em;
        margin: 10px auto;
        text-align: center;
        width: fit-content;
        order: 2;
    }
    .header-left-spacer {
        display: none;
    }
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 90%;
        margin-bottom: 20px;
    }
    .card .service-icon {
        width: 230px;
        height: 230px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
        object-fit: contain;
}
