.navbar .nav-link {
    font-size: 14px;
    margin: 0 10px;
    color: #333;
}

.navbar .nav-link:hover {
    color: #0093df;
}

/* BUTTON */
.btn-pamigo {
    background: #0093df;
    color: #fff;
    border-radius: 0;
}

.btn-pamigo:hover {
    background: #0093df;
    color: #fff;
}

/* DROPDOWN */
.dropdown-menu {
    border-radius: 0;
    border: 1px solid #ddd;
}

.dropdown-item {
    font-size: 14px;
}

.dropdown-item:hover {
    background: #eef8ff;
}

/* HOVER DESKTOP DROPDOWN */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* =========================
   MOBILE NAV UPGRADE
========================= */
@media (max-width: 991px) {

    /* Menü Fläche */
    .navbar-collapse {
        background: #fff;
        padding: 10px 0;
    }

    /* Hauptpunkte */
    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 14px 20px;
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    /* Aktiver Klick */
    .navbar-nav .nav-link:active {
        background: #eef8ff;
        color: #0093df;
    }

    /* Dropdown Button (Pfeil rechts schöner) */
    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }

    /* Dropdown Container */
    .dropdown-menu {
        border: none;
        background: #f8f9fa;
        padding: 0;
    }

    /* Dropdown Items */
    .dropdown-item {
        padding: 12px 30px;
        font-size: 15px;
        border-bottom: 1px solid #eee;
    }

    .dropdown-item:active {
        background: #0093df;
        color: #fff;
    }

    /* WhatsApp Button */
    .btn-pamigo {
        display: block;
        width: calc(100% - 40px);
        margin: 15px auto 10px;
        text-align: center;
    }
}



.service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 28px;
}
.service-item {
    padding: 6px 0;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
    color: #333;
}

.service-item:hover {
    color: #0093df;
}

.service-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #0093df;
    transition: 0.3s;
}

.service-item:hover::after {
    width: 100%;
}


.pamigo-blau {
    background-color: #0093df; /* oder dein exakter Pamigo-Blau */
    border-color: #0093df;
}

.pamigo-blau:hover {
    background-color: #0093df;
    border-color: #0093df;
}

.pamigo-outline {
    border-color: #0093df;
    color: #0093df;
}

.pamigo-outline:hover {
    background-color: #0093df;
    color: #fff;
}


.flip-card {
  perspective: 1200px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 320px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* FIX: saubere Rotation */
.flip-card.flipped .flip-inner {
  transform: rotateY(180deg);
}

/* WICHTIG: beide Seiten korrekt verstecken */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  border: 2px solid #0093df;
  overflow: hidden;
}

/* FRONT */
.flip-front {
  transform: rotateY(0deg);
  z-index: 2;
}

/* BACK */
.flip-back {
  transform: rotateY(180deg) translateZ(1px);
}

/* EXTRA FIX für große Screens */
.flip-front img,
.flip-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0); /* GPU Fix */
}

.label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0093df;
  color: white;
  padding: 3px 8px;
  font-size: 12px;
}

.hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 3px 8px;
  font-size: 12px;
}

.coming-soon-box {
  background: #0093df;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #0093df;
}

.coming-content h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.coming-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.hero-strip {
    width: 100%;
    height: 30px; /* Desktop */
    background-color: #0093df;
}


