:root {
    --primary: #0d6efd;
    --muted: #6c757d;
    --bg: #f7f9fc;
    font-family: Inter, system-ui, Arial, sans-serif
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--bg);
    color: #222
}

/* Header */
header {
    background: #0869a6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.brand {
    font-weight: bold;
    font-size: 1.3rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand .logo {
    width: 28px;
    height: 28px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

/* Kontakt button */
.btn-link {
    background: #fff;
    color: #0869a6 !important;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: bold;
}

.btn-link:hover {
    background: #f1f1f1;
}

/* Hamburger default hidden */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #0869a6;
        flex-direction: column;
        width: 200px;
        padding: 15px;
        display: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

        /* Fix overlay issue */
        z-index: 9999;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
        position: relative;
        z-index: 10000;
        /* ensure button is always clickable */
    }
}

/* Hero Section */
.hero {
    height: 90vh;
    background: url("img/bg.avif") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

/* Overlay for better text visibility */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero h1 span {
    color: #ffcc00;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.hero-btn {
    background: #ffcc00;
    color: #000;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #e6b800;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 80px 20px;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #0869a6;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;
    background: #0869a6;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: #05517d;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Brand Intro */
.brand-intro {
    padding: 80px 20px;
    background: #f7f9fc;
    /* text-align: center; */
}

.brand-container {
    max-width: 900px;
    margin: auto;
    margin-top: -150px;
}

.brand-intro h2 {
    font-size: 2.4rem;
    color: #0869a6;
    margin-bottom: 25px;
}

.brand-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    white-space: pre-line;
    /* line breaks preserved */
}

/* Flotte Section */
.flotte {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
    margin-top: -150px;
}

.flotte-container {
    max-width: 1200px;
    margin: auto;
}

.flotte h2 {
    font-size: 2.4rem;
    color: #0869a6;
    margin-bottom: 15px;
}

.flotte-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.flotte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.car-card {
    background: #f7f9fc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.car-card:hover {
    transform: translateY(-8px);
}

.car-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.car-card h3 {
    margin: 15px;
    font-size: 1.4rem;
    color: #222;
}

.car-card p {
    margin: 0 15px 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.car-btn {
    display: inline-block;
    margin-bottom: 20px;
    background: #0869a6;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.car-btn:hover {
    background: #05517d;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: #f7f9fc;
    text-align: center;
    margin-top: -150px;
}

.pricing-container {
    max-width: 1200px;
    margin: auto;
}

.pricing h2 {
    font-size: 2.4rem;
    color: #0869a6;
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
}

.price-card h3 {
    font-size: 1.6rem;
    color: #0869a6;
    margin-bottom: 15px;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    color: #444;
}

.price-card ul li {
    margin: 10px 0;
}

.price-btn {
    display: inline-block;
    background: #0869a6;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.price-btn:hover {
    background: #05517d;
}

/* Highlighted Plan */
.highlight {
    border: 2px solid #ffcc00;
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
    margin-top: -150px;
}

.testimonials-container {
    max-width: 1000px;
    margin: auto;
}

.testimonials h2 {
    font-size: 2.4rem;
    color: #0869a6;
    margin-bottom: 10px;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f7f9fc;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    font-style: italic;
    color: #444;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.testimonial-card .author {
    margin-top: 15px;
    font-weight: bold;
    color: #0869a6;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: #f7f9fc;
    margin-top: -150px;
}

.faq-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.faq h2 {
    font-size: 2.4rem;
    color: #0869a6;
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    text-align: left;
}

.faq-question {
    width: 100%;
    background: #fff;
    border: 2px solid #0869a6;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: left;
    color: #0869a6;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: #0869a6;
    color: #fff;
}

.faq-answer {
    display: none;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 0 0 6px 6px;
    color: #444;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Kontakt Section */
.contact {
    padding: 80px 20px;
    background: #fff;
    margin-top: -150px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 2rem;
    color: #0869a6;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.contact-info ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

.map-container {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.contact-form button {
    background: #0869a6;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #05517a;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #0869a6;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffcc00;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #fff;
    color: #0869a6;
    margin-right: 10px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: #ffcc00;
    color: #000;
}

.contact-list i {
    color: #ffcc00;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 0.9rem;
}

/* Cars Section */
.cars {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
    margin-top: -150px;
}

.cars-container {
    max-width: 1100px;
    margin: auto;
}

.cars h2 {
    font-size: 2.4rem;
    color: #0869a6;
    margin-bottom: 10px;
}

.cars-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.car-card {
    background: #f7f9fc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.car-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.car-card h3 {
    font-size: 1.4rem;
    margin: 15px 0 5px;
    color: #222;
}

.car-card .price {
    font-size: 1.1rem;
    color: #0869a6;
    margin-bottom: 15px;
    font-weight: bold;
}

.car-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.car-btn:hover {
    background: #e6b800;
}

/* Privacy Policy */
.privacy {
    padding: 60px 20px;
    background: #f9f9f9;
}

.privacy-container {
    max-width: 900px;
    margin: auto;
}

.privacy-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #117817;
}

.privacy-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1.1rem;
}

.privacy-block {
    margin-bottom: 35px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.privacy-block h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #333;
}

.privacy-block h2 i {
    color: #117817;
    margin-right: 8px;
}

.privacy-block p,
.privacy-block ul {
    color: #444;
    line-height: 1.6;
}

.privacy-block ul {
    list-style: none;
    padding-left: 0;
}

.privacy-block ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.privacy-block ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #117817;
}

/* Terms Conditions */
/* Terms & Conditions Styling */
.terms {
  padding: 60px 20px;
  background: #f9f9fb;
  font-family: "Inter", sans-serif;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.terms-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  color: #222;
}

.terms-intro {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.terms-block {
  margin-bottom: 35px;
  padding: 20px;
  border-left: 5px solid #0077ff;
  background: #fdfdfd;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.terms-block:hover {
  transform: translateY(-2px);
}

.terms-block h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #0077ff;
}

.terms-block h2 i {
  margin-right: 10px;
  font-size: 1.3rem;
}

.terms-block p,
.terms-block ul {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.terms-block ul {
  margin-left: 20px;
  list-style: none;
}

.terms-block ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 20px;
}

.terms-block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0077ff;
  font-size: 0.9rem;
}

.terms-note {
  margin-top: 30px;
  padding: 15px;
  background: #fff4e5;
  border: 1px solid #ffd8a8;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #663c00;
}
