:root {
    --primary: #e63946;
    --primary-dark: #c92c38;
    --accent: #ffb703;
    --bg-light: #f7f7f7;
    --text: #222222;
    --muted: #777777;
    --border: #e0e0e0;
    --shadow-soft: 0 10px 25px rgba(0,0,0,0.08);
    --radius: 6px;
    --transition: 0.2s ease-in-out;
    --max-width: 1140px;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--text);
    background-color: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* Topbar */

.topbar {
    background: #111111;
    color: #f1f1f1;
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
}

.topbar a {
    color: #ffffff;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Navbar */

.navbar {
    border-bottom: 1px solid var(--border);
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 16px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 18px;
}

.logo-sub {
    font-size: 12px;
    color: var(--muted);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: #ffffff;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
}

.btn-block {
    width: 100%;
}

/* Hero */

.hero {
    position: relative;
    background-color: #003366;
    background-image: url("../assets/kamyon2.png"); /* senin görselin */
    background-repeat: no-repeat;
    background-size: 54% 100%;
    background-position: left center;
    color: #ffffff;
    padding: 0px 0 0px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 20, 50, 0.25) 0%,
        rgba(0, 40, 90, 0.12) 38%,
        rgba(0, 40, 90, 0) 55%
    );
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 420px 420px; /* sol: boş+kamyon, orta: form, sağ: text */
    gap: 30px;
    align-items: start;
    z-index: 1;
}

/* ORTA – FORM */
.hero-form {
    grid-column: 2;
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    color: var(--text);
    border-radius: 10px;
    padding: 20px 18px 18px;
    box-shadow: var(--shadow-soft);
    justify-self: end;
    margin-right: -600px;
}

.hero-form h2 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 8px;
}

.hero-form form {
    display: grid;
    gap: 10px;
}

.hero-form label {
    font-size: 13px;
    display: grid;
    gap: 4px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    padding: 8px 9px;
    border-radius: 4px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-family: inherit;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    margin: 4px 0 0;
}

.selected-package-label {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 8px;
}

/* SAĞ – METİN */
.hero-text {
    grid-column: 3;
    max-width: 460px;
    justify-self: end;      /* kolonu sağ kenara yasla */
    align-self: start;
    text-align: left;
    margin-right: -600px;    /* BLOĞU 30px sağa taşır */
}

.hero-text h1 {
    font-size: 30px;
    margin-bottom: 12px;
}

.hero-text p {
    font-size: 16px;
    max-width: 520px;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    display: grid;
    gap: 4px;
    font-size: 15px;
}

.hero-note {
    font-size: 13px;
    margin-top: 8px;
    color: #f0f0f0;
}
/* Preis-Ergebnis */

.price-result {
    margin-top: 10px;
    padding: 10px 9px;
    border-radius: 4px;
    font-size: 13px;
    background: #f0f8ff;
    color: #123;
    border: 1px solid #c5e3ff;
}

.price-result small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.price-result-error {
    background: #fff4f4;
    border-color: #f5b5b5;
    color: #8a1f1f;
}

/* Sections */

section {
    padding: 50px 0;
}

.section-intro {
    max-width: 640px;
    color: var(--muted);
}

/* USP */

.usp {
    background: var(--bg-light);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.usp-item {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 18px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.usp-item h3 {
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 6px;
}

.usp-item p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

/* Services – nur ein Bild */

.services {
    padding: 40px 0 50px;
    background-color: #ffffff;
}

.services-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: block;
}

/* Steps */

.steps {
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.step-item {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 16px 14px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.step-number {
    position: absolute;
    top: -10px;
    left: 12px;
    background: var(--primary);
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.step-item h3 {
    margin-top: 10px;
    margin-bottom: 6px;
    font-size: 16px;
}

.step-item p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

/* Pricing */

.pricing {
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 22px;
}

.price-card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 18px 16px;
    background: #ffffff;
    position: relative;
}

.price-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.price-card h3 {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 18px;
}

.price-from {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--primary);
}

.price-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 12px;
    font-size: 14px;
    color: var(--muted);
    display: grid;
    gap: 4px;
}

.price-card .badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--accent);
    color: #111111;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

/* Testimonials */

.testimonials {
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.testimonial {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 16px 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    font-size: 14px;
    color: var(--muted);
}

.testimonial p {
    margin-top: 0;
    margin-bottom: 10px;
}

.testimonial .author {
    font-weight: 600;
    color: var(--text);
    font-size: 13px;
}

/* FAQ */

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.faq-item p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

/* Contact */

.contact {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: flex-start;
}

.contact-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0 0;
    font-size: 14px;
    color: var(--muted);
    display: grid;
    gap: 4px;
}

.contact-form {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 18px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.contact-form h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.contact-form form {
    display: grid;
    gap: 10px;
}

.contact-form label {
    font-size: 13px;
    display: grid;
    gap: 4px;
}

.contact-form input,
.contact-form textarea {
    padding: 8px 9px;
    border-radius: 4px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-family: inherit;
}

/* Footer */

.footer {
    background: #111111;
    color: #f1f1f1;
    font-size: 13px;
    padding: 14px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.footer-right {
    display: flex;
    gap: 12px;
}

.footer a {
    color: #f1f1f1;
    font-size: 13px;
}

/* Responsive */

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-form {
        order: -1;
    }

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

/* Mevcut @media (max-width: 640px) bloğun aynen kalabilir; sadece
   içine ekstra youtube-head boyutları eklemek istersen: */

@media (max-width: 640px) {
    .topbar-inner,
    .navbar-inner,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 30px;
    }

    .usp-grid,
    .service-grid,
    .steps-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 36px 0;
    }

    .youtube-head h2 {
        font-size: 28px;
    }

    .youtube-head p {
        font-size: 15px;
    }
}

/* YOUTUBE BÖLÜMÜ */

.youtube-showcase {
  padding: 64px 0;
  background: #f8f8f8;
}

.youtube-showcase .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto; /* ekran çok dar olursa */
}

.youtube-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.youtube-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d32f2f;
}

.youtube-head h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #111;
}

.youtube-head p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* videolar yan yana */
  gap: 22px;
  align-items: start;
}

.youtube-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16; /* Shorts için dikey oran */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  background: #000;
}

.youtube-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.youtube-actions {
  text-align: center;
  margin-top: 28px;
}

.youtube-logo-link {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff0000;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.25);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.youtube-logo-link:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 0, 0, 0.32);
}

.youtube-logo-link svg {
  width: 28px !important;
  height: 28px !important;
}

.youtube-logo-link:focus-visible {
  outline: 3px solid rgba(255, 0, 0, 0.28);
  outline-offset: 4px;
}

.seo-text {
    padding: 24px 0;
    background: #ffffff;
}

.seo-text h2 {
    font-size: 12px;   /* biraz küçüldü */
    margin-bottom: 8px;
}

.seo-text p {
    font-size: 13px;   /* küçük ama hâlâ okunabilir */
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

/* Sadece küçük ekran düzeltmesi */
@media (max-width: 1200px) {
    .hero-form {
        margin-right: 0 !important;
        justify-self: center;
    }

    .hero-text {
        margin-right: 0 !important;
        justify-self: center;
        max-width: 420px;
    }

    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .hero-form {
        grid-column: 1;
    }

    .hero-text {
        grid-column: 2;
    }
}

@media (max-width: 900px) {
    .hero {
        background-size: cover;
        background-position: center;
        padding: 20px 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-form,
    .hero-text {
        grid-column: 1;
        width: 100%;
        max-width: 520px;
        margin-right: 0 !important;
        justify-self: center;
    }

    .hero-text {
        text-align: left;
    }

    .hero-text h1 {
        font-size: 24px;
    }
}

html, body {
    overflow-x: hidden;
}