:root {
    --orange: #EC6229;
    --orange-dark: #EC6229;
    --orange-light: #EC6229;
    --orange-pale: #EC6229;
    --gray-dark: #1f1f1f;
    --gray-mid: #5A5A5A;
    --gray-light: #A0A0A0;
    --gray-bg: #F4F4F4;
    --gray-line: #E0E0E0;
    --white: #FFFFFF;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--gray-dark);
    color: #fff;
    font-size: 0.78rem;
    padding: 12px 0;
  }
  .topbar-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .topbar a { color: #ccc; text-decoration: none; }
  .topbar a:hover { color: var(--orange-light); }
  .topbar-links { display: flex; gap: 24px; align-items: center; }
  .topbar-links span { color: var(--orange); margin-right: 6px; }

  /* ── NAVBAR ── */
  nav {
    background: #1f1f1f;
    /* position: sticky; */
    top: 0;
    z-index: 999;
    border-bottom: 3px solid var(--orange);
    box-shadow:0 2px 16px rgb(0 0 0);
    padding: 12px 0px;
  }
  .nav-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
  .nav-links > li { position: relative; }
  .nav-links > li > a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size:14px;
    color: #fff;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 0px;
    transition: color .2s, background .2s;

  }
  .nav-links > li > a:hover,
  .nav-links > li > a.active {
    color: var(--orange);
    
  }
  .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-line);
    border-top: 3px solid var(--orange);
    min-width: 220px;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    list-style: none;
    z-index: 100;
  }
  .nav-links > li:hover .dropdown { display: block; }
  .dropdown li a {
    display: block;
    padding: 10px 18px;
    font-size:14px;
    font-weight: 600;
    color: var(--gray-mid);
    text-decoration: none;
    transition: background .15s, color .15s;
  }
  .dropdown li a:hover {
   
    color: var(--orange);
   
  }
  .nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: 0px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    transition: background .2s !important;
  }
  .nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 88vh;
    background: var(--gray-dark);
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(105deg, rgba(244,120,32,0.92) 0%, rgba(43,43,43,0.75) 50%, rgba(43,43,43,0.95) 100%);
    z-index: 1;
  }
  .hero-pattern {
    position: absolute;
    inset: 0;
   
    z-index: 2;
  }
  .hero-road {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 6px;
    background: var(--orange);
    z-index: 3;
  }
  .hero-road::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0; right: 0;
    height: 3px;
    /*background: repeating-linear-gradient(90deg, var(--white) 0, var(--white) 40px, transparent 40px, transparent 70px);*/
    opacity: 0.25;
  }
  .hero-content {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    margin: auto;
    padding: 24px 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,120,32,0.2);
    border: 1px solid rgba(244,120,32,0.5);
    color: var(--orange-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 0px;
    margin-bottom: 20px;
  }
  .hero-badge::before { content: '●'; font-size: 0.5rem; }
  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--orange-light);
    display: block;
  }
  .hero-desc {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 36px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 0px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background .2s, transform .15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
  .btn-outline {
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 0px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: border-color .2s, background .2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--orange-light); background: rgba(244,120,32,0.15); }
  /* Quick Quote Card */
  .hero-card {
    background: #1f1f1f;
    border-radius: 0px;
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
  .hero-card h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
  }
  .hero-card p { font-size: 0.82rem; color: #fff; margin-bottom: 20px; }
  .form-group { margin-bottom: 14px; }
  .form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  .form-group select, .form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-line);
    border-radius: 0px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--gray-dark);
    background: var(--gray-bg);
    transition: border-color .2s;
    outline: none;
  }
  .form-group select:focus, .form-group input:focus { border-color: var(--orange); background: var(--white); }
  .btn-form {
    width: 100%;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 13px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: background .2s;
    margin-top: 6px;
  }
  .btn-form:hover { background: var(--orange-dark); }
  .divider-line {
    height: 2px;
    background: var(--gray-line);
    margin: 20px 0;
    position: relative;
  }
  .divider-line::after {
    content: 'VEYA';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    background: var(--white);
    padding: 0 10px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-light);
    letter-spacing: 1px;
  }
  .phone-cta {
    text-align: center;
    font-size: 0.82rem;
    color: #fff;
  }
  .phone-cta a {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--orange);
    padding: 28px 0;
  }
  .stats-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.25);
    padding: 0 20px;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
    letter-spacing: 0.5px;
  }

  /* ── SECTION SHARED ── */
  section { padding: 90px 0; }
  .container {max-width: 1200px;margin: auto;padding: 0 15px;}
  .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-label::before {content: '';display: block;width: 28px;height: 2px;background: var(--orange);}
  .section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
  }
  .section-title span { color: var(--orange); }
  .section-desc { font-size: 1rem; color: #fff; line-height: 1.7; max-width: 560px; }

  /* ── ABOUT ── */
  .about { background: #1f1f1f; }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-img-wrap {
    position: relative;
  }
  .about-img-main {
   /* width: 100%;
    height: 420px;
    background: linear-gradient(135deg, var(--gray-bg) 0%, #ddd 100%);
    border-radius:0px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;*/
  }
  .about-img-main .img-placeholder {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-light);
    letter-spacing: 2px;
  }
  .about-img-badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: var(--orange);
    color: var(--white);
    padding: 16px 22px;
    border-radius: 0px;
    box-shadow: 0 8px 24px rgba(244,120,32,0.35);
  }
  .about-img-badge strong {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
  }
  .about-img-badge span { font-size: 0.78rem; opacity: 0.9; }
  .about-accent {
    display: none;
    position: absolute;
    top: -16px; right: -16px;
    width: 80px; height: 80px;
    border: 4px solid var(--orange);
    border-radius: 0px;
    opacity: 0.4;
  }
  .about-checks { margin: 28px 0; display: grid; gap: 12px; }
  .check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: #fff;
    line-height: 1.5;
  }
  .check-icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: var(--orange);
    color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    margin-top: 1px;
  }

  /* ── SERVICES ── */
  .services { background: #1f1f1f;    box-shadow: 0 2px 16px rgb(0 0 0); }
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }
  .service-card {
    background: #1f1f1f;
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
    border: 1px solid #828282;
   
    cursor: pointer;
  }
  .service-card:hover {
    box-shadow: 0 12px 40px rgba(244,120,32,0.15);
    transform: translateY(-4px);
  }
  .service-card:hover .service-img-wrap::after { opacity: 0.5; }
  .service-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--gray-mid);
    overflow: hidden;
  }
  .service-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(244,120,32,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .25s;
  }
  .service-img-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #3a3a3a, #5a5a5a);
  }
  .service-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 0px;
    z-index: 1;
  }
  .service-body { padding: 22px 22px 26px; }
  .service-body h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
  }
  .service-body p { font-size: 0.86rem; color: #fff; line-height: 1.65; margin-bottom: 16px; }
  .service-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
  }
  .service-link:hover { gap: 10px; }
  .service-link::after { content: '→'; }

  /* ── FLEET ── */
  .fleet { background: var(--white); }
  .fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .fleet-card {
    border: 2px solid var(--gray-line);
    border-radius: 0px;
    padding: 28px 20px 22px;
    text-align: center;
    transition: border-color .2s, box-shadow .2s;
    cursor: pointer;
  }
  .fleet-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(244,120,32,0.12);
  }
  .fleet-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: block;
  }
  .fleet-card h4 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
  }
  .fleet-card p { font-size: 0.82rem; color: var(--gray-light); line-height: 1.5; }
  .fleet-cap {
    display: inline-block;
    background: var(--orange-pale);
    color: var(--orange-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 0px;
    margin-top: 10px;
  }

  /* ── WHY US ── */
  .whyus { background: var(--gray-dark); overflow: hidden; position: relative;box-shadow: 0 2px 16px rgb(0 0 0); }
  .whyus-bg-pattern {
    position: absolute;
    inset: 0;
   
  }
  .whyus .container { position: relative; z-index: 1; }
  .whyus .section-title { color: var(--white); }
  .whyus .section-label { color: var(--orange-light); }
  #neden-biz .section-label::before {background: #fff;}
  .whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
  }
  .whyus-features { display: grid; gap: 20px; }
  .feat-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border-radius: 0px;
    border-left: 3px solid transparent;
    transition: border-color .2s, background .2s;
    cursor: pointer;
  }
  .feat-item:hover {
    border-left-color: var(--orange);
    background: rgba(255,255,255,0.07);
  }
  .feat-icon-wrap {
    flex-shrink: 0;
    width: 46px; height: 46px;
    background: rgba(244,120,32,0.15);
    border: 1px solid rgba(244,120,32,0.3);
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
  }
  .feat-text h4 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
    margin-bottom: 4px;
  }
  .feat-text p { font-size: 0.83rem; color: #fff; line-height: 1.6; }
  .whyus-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .metric-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0px;
    padding: 0;
    text-align: center;
    transition: border-color .2s;
  }
  .metric-box:hover { border-color: rgba(244,120,32,0.4); }

  .metric-num {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
  }
  .metric-label { font-size: 0.78rem; color: #fff; margin-top: 6px; }
  .metric-box:first-child .metric-label { color: rgba(255,255,255,0.85); }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--gray-bg); }
  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .test-card {
    background: var(--white);
    border-radius: 0px;
    padding: 28px;
    border: 1px solid var(--gray-line);
    position: relative;
    transition: box-shadow .2s;
  }
  .test-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
  .test-quote {
    font-size: 3rem;
    color: var(--orange);
    font-family: Georgia, serif;
    line-height: 0.8;
    margin-bottom: 14px;
    opacity: 0.4;
  }
  .test-card p {
    font-size: 0.88rem;
    color: var(--gray-mid);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
  }
  .test-author { display: flex; align-items: center; gap: 12px; }
  .test-avatar {
    width: 42px; height: 42px;
    background: var(--orange);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
  }
  .test-name { font-weight: 700; font-size: 0.88rem; color: var(--gray-dark); }
  .test-role { font-size: 0.76rem; color: var(--gray-light); }
  .test-stars { color: var(--orange); font-size: 0.8rem; margin-bottom: 2px; }

  /* ── CONTACT ── */
  .contact {background: #1f1f1f;box-shadow: 0 2px 16px rgb(0 0 0);}
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
  }
  .contact-info h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
  }
  .contact-info p { font-size: 0.9rem; color: #fff; line-height: 1.7; margin-bottom: 28px; }
  .contact-items { display: grid; gap: 16px; }
  .contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .contact-item-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
   
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }
  .contact-item-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
  }
  .contact-item-text a, .contact-item-text span {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    line-height: 1.5;
    display: block;
  }
  .contact-item-text a:hover { color: var(--orange); }
  .contact-form { background: var(--gray-bg); padding: 36px; border-radius: 0px; }
  .contact-form h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  /* ── FOOTER ── */
  footer {
    box-shadow: 0 2px 16px rgb(0 0 0);
    background: #1f1f1f;
    color: rgba(255,255,255,0.6);
    padding: 70px 0 0;
  }
  .footer-grid {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer-brand .logo { display: block; margin-bottom: 14px; }
  .footer-brand p { font-size:14px; line-height: 1.7; margin-bottom: 20px;color:#fff; }
  .footer-phone {
    color: var(--orange-light);
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-col h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
  }
  .footer-col ul { list-style: none; display: grid; gap: 9px; }
  .footer-col ul li a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color .15s;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .footer-col ul li a::before { content: '›'; color: var(--orange); font-size: 1rem; }
  .footer-col ul li a:hover { color: var(--orange-light); }
  .footer-newsletter p { font-size: 0.84rem; margin-bottom: 14px; color: #fff;}
  .newsletter-form { display: flex; gap: 0; }
  .newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-right: none;
    border-radius: 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
  }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
  .newsletter-form button {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 10px 16px;
    border-radius: 0;
    cursor: pointer;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: background .2s;
  }
  .newsletter-form button:hover { background: var(--orange-dark); }
  .footer-bottom {
    max-width: 1200px;
    margin: auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #fff;
  }
  .footer-bottom a { color: var(--orange-light); text-decoration: none; }

  /* ── FLOATING CTA ── */
  .floating-cta {
    display: none!important;
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }
  .float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 20px;
    border-radius: 0px;
    box-shadow: 0 4px 20px rgba(244,120,32,0.4);
    transition: transform .2s, box-shadow .2s;
  }
  .float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,120,32,0.5); }
  .float-btn.whatsapp { background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.35); }

  /* Responsive */
  @media (max-width: 960px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .about-grid, .whyus-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .test-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  }
  @media (max-width: 600px) {
    .services-grid, .fleet-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .topbar-links { display: none; }
    .nav-links { display: none; }
  }


  .hamburger span{
    position:absolute;
    width:100%;
    height:3px;
    background:white;
    border-radius:5px;
    transition:0.3s;
    left:0;
  }

  .hamburger span:nth-child(1){
    top:0;
  }

  .hamburger span:nth-child(2){
    top:10px;
  }

  .hamburger span:nth-child(3){
    top:20px;
  }

  /* X animasyonu */
  .hamburger.active span:nth-child(1){
    transform:rotate(45deg);
    top:10px;
  }

  .hamburger.active span:nth-child(2){
    opacity:0;
  }

  .hamburger.active span:nth-child(3){
    transform:rotate(-45deg);
    top:10px;
  }

  .hamburger{
  display:none;
}

  .menu{
  display:none;
}

@media (max-width:1024px){

  .nav-links{display: none;}

     .hamburger{
      display: block;
      width:30px;
      height:25px;
      position: absolute;
      top:70px;
      right:20px;
      cursor:pointer;
      z-index:99999 !important;
    }

    .menu{
       display: block;
      position:fixed;
      top:0;
      right:-250px;
      width:250px;
      height:100vh;
      background:#1f1f1f;
      transition:.3s;
      z-index:9999;
    }

}



  .menu.active{
    right:0;
  }

  .menu a{
    display:block;
    color:white;
    text-decoration:none;
    padding:15px 25px;
    transition:0.3s;
  }

  .menu a:hover{
    background:#444;
  }

  .dropdown2{
  width:100%;
}

.dropdown-btn2{
  width:100%;
  background:none;
  border:none;
  color:white;
  text-align:left;
  padding:15px 25px;
  font-size:16px;
  cursor:pointer;

}

.dropdown-btn2:hover{
  background:#444;
}

.dropdown-content2{
  display:none;
  background:#333;
}

.dropdown-content2 a{
  padding-left:40px;
}

/* Açılınca */
.dropdown2.active .dropdown-content2{
  display:block;
}

.quick-contact-inner{
  display:grid!important;
  grid-template-columns: repeat(4, 1fr)!important;
  gap:20px!important;
  padding:20px!important;
}


.qc-icon{
  font-size:28px!important;
  margin-bottom:10px!important;
}

/* TABLET */
@media (max-width:992px){
  .quick-contact-inner{
    grid-template-columns: repeat(2, 1fr)!important;
  }
}

/* MOBİL */
@media (max-width:576px){
  .quick-contact-inner{
    grid-template-columns: repeat(2, 1fr)!important;
    gap:12px;
    padding:10px;
  }

  .qc-card{
    padding:15px!important;
  }

  .qc-card strong{
    font-size:12px!important;
    display:block!important;
    word-break:break-word!important;
  }
}


.image-row2{
  display:flex;
  gap:15px;
  width:100%;
}

.image-row2-img{
  width:100%;
  max-width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  border-radius:0px;
}

/* PC - 3 eşit kolon */
.image-row2-img{
  flex:1;
  min-width:0; /* 🔥 taşmayı engeller */
}

/* Mobil - alt alta */
@media (max-width:768px){
  .image-row2{
    flex-direction:column;
  }
}