/* Base */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body { font-family: 'Inter', sans-serif; color: #0f172a; line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }



/* Header */

.topbar { background: #0f172a; color: #e2e8f0; font-size: 14px; }

.topbar-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; }

.topbar a { color: #e2e8f0; text-decoration: none; margin-left: 16px; }

.top-time { opacity: .8; margin-right: 12px; }

.lang-btn { background: transparent; color: #e2e8f0; border: 1px solid #334155; padding: 6px 10px; border-radius: 999px; cursor: pointer; }

.header { position: sticky; top: 0; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); z-index: 100; border-bottom: 1px solid #e2e8f0; }

.navbar { padding: 14px 0; }

.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 32px; gap: 32px; }

.nav-logo { display: flex; align-items: center; }

.logo { height: 48px; width: auto; filter: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; }

.hamburger span { display: block; width: 24px; height: 2px; background: #0f172a; }

.nav-menu { display: flex; list-style: none; gap: 28px; margin-right: 16px; }

.nav-menu li:last-child { padding-right: 12px; }

.nav-menu a { text-decoration: none; color: #0f172a; font-weight: 600; }

.nav-menu a:hover { color: #2563eb; }

.nav-menu a.active { color: #2563eb; border-bottom: 2px solid #2563eb; padding-bottom: 4px; }

.nav-menu a.nav-featured { border: 2px solid #dc2626 !important; border-radius: 6px; padding: 6px 12px; }

.nav-menu a.nav-featured:hover { border-color: #b91c1c !important; color: #dc2626; }



/* Hero */

.hero { position: relative; min-height: 85vh; display: grid; align-items: center; color: #fff; overflow: hidden; }

.hero::before { content: ""; position: absolute; inset: 0; background: url('../img/inmove.jpg') center/cover no-repeat; transform: scale(1.50); animation: heroZoom 20s ease-in-out infinite alternate; opacity: 1.00; }

.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(30,58,138,0.92), rgba(14,165,233,0.85)); }

.hero-grid { display: block; max-width: 800px; margin: 0 auto; padding: 80px 0; position: relative; z-index: 1; }

.hero h1 { font-size: 3rem; line-height: 1.15; margin-bottom: 10px; }

.lead { color: #e2e8f0; margin-bottom: 20px; }

.cta { display: flex; gap: 12px; }

.hero-highlight { background: rgba(15,23,42,0.25); border: 1px solid rgba(226,232,240,0.25); border-radius: 12px; padding: 18px; backdrop-filter: blur(6px); }

.kpi { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 18px 0; }

.kpi li { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; padding: 12px; }

.kpi-title { font-weight: 700; text-transform: uppercase; font-size: 12px; opacity: .9; }

.kpi-sub { font-size: 20px; font-weight: 800; }

.kpi-note { font-size: 12px; opacity: .85; }

.hero-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }

.hero-services-item { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 14px; backdrop-filter: blur(4px); transition: all 0.2s ease; }

.hero-services-item:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

.hero-services-item i { font-size: 24px; color: #fff; min-width: 28px; text-align: center; }

.hero-services-item div { display: flex; flex-direction: column; gap: 4px; }

.hero-services-item strong { color: #fff; font-weight: 700; font-size: 14px; line-height: 1.2; }

.hero-services-item span { color: rgba(255,255,255,0.9); font-size: 12px; line-height: 1.3; }

@media (max-width: 768px) { .hero-services { grid-template-columns: 1fr; gap: 10px; margin: 20px 0; } .hero-services-item { padding: 12px; } .hero-services-item i { font-size: 20px; min-width: 24px; } .hero-services-item strong { font-size: 13px; } .hero-services-item span { font-size: 11px; } }



/* Buttons */

.btn { display: inline-block; padding: 12px 24px; border-radius: 999px; text-decoration: none; font-weight: 700; border: 2px solid transparent; cursor: pointer; }

.btn-primary { background: #2563eb; color: #fff; border-color: #2563eb; }

.btn-primary:hover { background: #1d4ed8; }

.btn-secondary { background: transparent; color: #fff; border-color: #fff; }

.btn-secondary:hover { background: #fff; color: #1e3a8a; }



.benefits { list-style: none; display: grid; gap: 10px; }

.benefits li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #fff; }

.benefits i { color: #fff; font-size: 18px; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 18px; }

.benefit { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 16px; box-shadow: 0 4px 20px rgba(2,6,23,0.06); }

.benefit i { color: #2563eb; margin-right: 8px; }



/* Sections */

section { padding: 80px 0; }

.intro { background: #f8fafc; }

.services .cards-grid, .fleet .cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

.card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 24px; box-shadow: 0 4px 20px rgba(2,6,23,0.06); }

.card-icon { font-size: 28px; color: #2563eb; margin-bottom: 10px; }



/* Services detailed */

.services-detailed h2 { margin-bottom: 8px; }

.service-block { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 20px; box-shadow: 0 4px 20px rgba(2,6,23,0.06); margin-bottom: 16px; }

.service-block h3 { margin-bottom: 8px; }

.service-block .bullets { margin: 8px 0 0 18px; }

.service-media { display: flex; flex-wrap: wrap; gap: 16px; margin: 14px 0; }

.service-image { flex: 1 1 220px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 12px; display: flex; flex-direction: column; gap: 10px; }

.service-image img { width: 100%; border-radius: 12px; aspect-ratio: 16/9; object-fit: cover; }

.service-image figcaption { font-size: 13px; color: #475569; }

.seo-tags { font-size: 12px; color: #475569; margin-top: 8px; }

.seo-focus { font-size: 12px; color: #475569; margin-top: 10px; opacity: .9; }



/* Fleet detailed */

.fleet-detailed h2 { margin-bottom: 8px; }

.table-wrap { overflow-x: auto; margin-top: 12px; }

.fleet-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }

.fleet-table th, .fleet-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #e2e8f0; }

.fleet-table thead th { background: #f1f5f9; font-weight: 700; }

.fleet-table tbody tr:hover { background: #f8fafc; }



/* Tariffe */

.tariffe p { margin-top: 8px; }

.tariffe .tariffe-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }

.tariffe .tariffe-table th, .tariffe .tariffe-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #e2e8f0; }

.tariffe .tariffe-table thead th { background: #f1f5f9; font-weight: 700; }

.tariffe .tariffe-table tbody tr:hover { background: #f8fafc; }



/* Destinations */

.destinations-detailed h2 { margin-bottom: 8px; }

.route-list { margin: 6px 0 0 18px; }

.route-list li { margin: 4px 0; }

.checklist { margin: 6px 0 0 0; list-style: none; }

.checklist li { position: relative; padding-left: 26px; margin: 6px 0; }

.checklist li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #16a34a; position: absolute; left: 0; top: 0; }

.dest-photo { margin-top: 14px; border-radius: 20px; overflow: hidden; box-shadow: 0 18px 40px rgba(15,23,42,0.18); }

.dest-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }



/* Home visual */

.home-visual { margin-top: 20px; }

.home-visual img { width: 100%; border-radius: 20px; object-fit: cover; max-height: 420px; }



/* Navigation spacing refine */

.nav-container::after { content: ""; }



/* Gallery */

.gallery { background: #f8fafc; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }

.gallery-item { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(15,23,42,0.12); }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }

.gallery-item img:hover { transform: scale(1.05); }



.reviews { background: #fff; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }

.review { background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px; }

.review span { color: #0f172a; font-weight: 700; }



.quick-contact .mini-form { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 10px; }

.quick-contact input { padding: 12px 14px; border: 2px solid #e2e8f0; border-radius: 10px; font: inherit; }

.form-status { margin-top: 12px; font-size: 14px; color: #1e293b; min-height: 20px; }

.form-status.success { color: #15803d; }

.form-status.error { color: #b91c1c; }



.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }

.bullets { margin-top: 10px; padding-left: 18px; }

.bullets li { margin-bottom: 6px; }

.about-photo { border-radius: 24px; overflow: hidden; box-shadow: 0 18px 40px rgba(15,23,42,0.18); }

.about-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }



.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }

.price-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 20px; text-align: center; }

.calc-cta { margin-top: 14px; text-align: center; }



/* FAQ */

.faq { background: #f8fafc; }

.accordion { display: grid; gap: 10px; }

.acc-header { width: 100%; text-align: left; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 14px 16px; font-weight: 700; cursor: pointer; }

.acc-panel { display: none; padding: 12px 16px; background: #fff; border: 1px solid #e2e8f0; border-top: 0; border-radius: 0 0 12px 12px; }

.acc-item.open .acc-panel { display: block; }



/* Network */

.map-box { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(15,23,42,0.12); }

.map-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.contact .map-box { margin-top: 32px; }



.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }

.post { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 20px; }



.contact-form { display: grid; gap: 10px; }

.contact-form input, .contact-form textarea { padding: 12px 14px; border: 2px solid #e2e8f0; border-radius: 10px; font: inherit; }



/* Footer */

.footer { background: #0f172a; color: #e2e8f0; padding: 40px 0; }

.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 32px; align-items: start; }

.foo-brand { display: flex; flex-direction: column; gap: 12px; }

.foo-brand .logo { filter: brightness(0) invert(90%); width: 120px; height: auto; margin-bottom: 4px; }

.foo-brand p { margin: 0; line-height: 1.6; }

.foo-links { list-style: none; display: flex; flex-wrap: wrap; gap: 16px 24px; margin: 0; padding: 0; align-items: start; }

.foo-links a { color: #e2e8f0; text-decoration: none; transition: color 0.2s; }

.foo-links a:hover { color: #93c5fd; }

.foo-contacts { display: flex; flex-direction: column; gap: 12px; }

.foo-contacts p { margin: 0; line-height: 1.6; }

.foo-contacts a { color: #e2e8f0; text-decoration: none; transition: color 0.2s; }

.foo-contacts a:hover { color: #93c5fd; }

.foo-contacts i { margin-right: 10px; width: 18px; text-align: center; }

.payments { display: flex; gap: 16px; margin-top: 16px; font-size: 28px; }

.payments i { opacity: 0.8; transition: opacity 0.2s; }

.payments i:hover { opacity: 1; }



/* WhatsApp Button */

.whatsapp-button {

  position: fixed;

  bottom: 24px;

  right: 24px;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 60px;

  height: 60px;

  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);

  color: #fff;

  border-radius: 50%;

  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);

  text-decoration: none;

  z-index: 9999;

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  animation: whatsappPulse 2s infinite;

}



.whatsapp-button:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);

  background: linear-gradient(135deg, #20BA5A 0%, #25D366 100%);

}



.whatsapp-button:active {

  transform: translateY(0);

}



.whatsapp-button i {

  font-size: 32px;

  line-height: 1;

}



@keyframes whatsappPulse {

  0%, 100% {

    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);

  }

  50% {

    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);

  }

}



/* Responsive WhatsApp Button */

@media (max-width: 768px) {

  .whatsapp-button {

    bottom: 20px;

    right: 20px;

    width: 56px;

    height: 56px;

  }

  

  .whatsapp-button i {

    font-size: 28px;

  }

}



/* Responsive */

@media (max-width: 900px) {

  .nav-container { padding: 0 20px; }

  .hero-grid { grid-template-columns: 1fr; }

  .two-col { grid-template-columns: 1fr; }

  .quick-contact .mini-form { grid-template-columns: 1fr; }

  .nav-menu { display: none; }

  .hamburger { display: flex; }

  .kpi { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .foo-links { justify-content: center; }

}



@keyframes heroZoom {

  0% { transform: scale(1.45); }

  100% { transform: scale(1.0); }

}



