html{
scroll-behavior:smooth;
}

img{
max-width:100%;
height:auto;
}


/* ============================================================
   GLOBAL
============================================================ */

.text-logo { /* ==== TEXT LOGO ======== */

    font-size: 20px !important;
    font-weight: 800 !important;
    color: #0f2b4c !important;
    letter-spacing: 0.5px;
}
.site-logo {   /* ==== LOGO ======== */
    height: 42px;
    margin-right: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
@media(max-width:768px){

.container{
width:100%;
padding:0 18px;
}
}


/* ============================================================
   TOP BAR
============================================================ */

.main-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-bar {
    background: #0f2b4c;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-btn {
    background: #25d366;
    padding: 8px 18px;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============================================================
   NAVBAR
============================================================ */

.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo-area img {
    height: 55px;
}

.menu {
    display: flex;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.menu a:hover {
    color: #007bff;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 55px;
}

.text-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #0f2b4c;
    margin: 0;
    padding: 0;
}
.logo-link,
.logo-link:hover {
    text-decoration: none;
}

/* ============================================================
   HERO — PREMIUM SLIDER
============================================================ */

.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero-slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:none;
}

.hero-slide.active{
display:block;
z-index:2;
}


.hero-main-title{
    position:absolute;
    left:-9999px;
}

.hero-img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 3;
}

.hero-content {
    position: absolute;
pointer-events:auto;

    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 700px;
    width: 90%;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: .9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* BUTONLAR */
.btn-primary {
    background: #f59e0b;
    padding: 14px 28px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #d48806;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #fff;
    padding: 12px 28px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #0d2b4f;
}

/* HERO OKLARI */
.hero-nav span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
}

.hero-prev { left: 25px; }
.hero-next { right: 25px; }

.hero-nav span:hover {
    background: #f59e0b;
}

/* HERO DOTS */
.hero-dots {
    position: absolute;
    bottom: 22px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.hero-dot {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.55);
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-dot.active {
    background: #f59e0b;
}

@media(max-width:768px){

.hero{
height:420px;
min-height: 420px;
}

.hero h1{
font-size:22px;
line-height:1.3;
}

.hero p{
font-size:14px;
}

}

/* ============================================================
   PREMİUM (ABOUT)
============================================================ */


.about-flex {
    display: grid;
    grid-template-columns: 1.1fr 1fr; /* Sol video biraz daha geniş */
    gap: 100px;
    align-items: start;
    margin-top: 100px;
}

.video-box video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-text h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #0d2b4f;
}

.about-text p {
    line-height: 1.6;
    font-size: 16px;
    color: #444;
}

@media (max-width: 992px) {
    .about-flex {
        grid-template-columns: 1fr;
    }
}



/* ============================================================
   HIGHLIGHT (ÖNE ÇIKANLAR)
============================================================ */

.highlight {
    padding: 80px 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.highlight-card {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.highlight-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.25));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.highlight-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

/* ============================================================
   WHY (Neden Biz)
============================================================ */

.why {
    background: #0d2b4f;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.why-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.why-desc {
    max-width: 700px;
    margin: 0 auto 50px auto;
    opacity: .9;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    color: #222;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: .3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #0d2b4f;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 12px auto;
}

/* ============================================================
   HİZMETLER
============================================================ */

.services {
    padding: 100px 0;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ============================================================
   FOOTER
============================================================ */


/* ================= FOOTER ================= */

.main-footer {
    background:#0d2b4f;
    color:#fff;
    padding-top:60px;
    width: 100%;
}
.main-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    padding-bottom:40px;
    align-items:start;
    text-align: center;         
    justify-items: center; 
    max-width: 1000px;
    margin: 0 auto;

}

.footer-col h4 {
    margin-bottom:20px;
    font-size:18px;
    font-weight:600;
}

.footer-col ul {
    list-style:none;
    padding-left:0;
}

.footer-col ul li {
    margin-bottom:10px;
}

.footer-col ul li a {
    text-decoration:none;
    color:#cbd5e1;
    transition:0.3s;
}

.footer-col ul li a:hover {
    color:#f59e0b;
}

/* WHATSAPP BUTTON */
.contact-buttons {
    display:flex;
    justify-content:flex-start;
}

.contact-box {
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* SOSYAL MEDYA TAM ORTADA */
.footer-social {
    width:100%;
    text-align:center;
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,0.15);
    display:flex;
    justify-content:center;
    gap:20px;
}

.footer-social a {
    color:#ffffffcc;
    font-size:22px;
    transition:0.3s;
}

.footer-social a:hover {
    transform:translateY(-4px) scale(1.2);
}

/* Icon renkleri */
.footer-social .fa-facebook-f:hover { color:#1877f2; }
.footer-social .fa-instagram:hover { color:#e4405f; }
.footer-social .fa-x-twitter:hover { color:#000; }
.footer-social .fa-youtube:hover { color:#ff0000; }

/* COPYRIGHT */
.footer-bottom {
    text-align:center;
    padding:18px 0;
    background:#08203a;
    font-size:14px;
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .footer-top {
        grid-template-columns:repeat(2,1fr);
        text-align:center;
    }
    .contact-buttons {
        justify-content:center;
    }
    .footer-col {
        justify-self:center;
    }
}

@media(max-width:600px) {
    .footer-top {
        grid-template-columns:1fr;
        gap:25px;
        text-align:center;
    }
    .contact-box {
        align-items:center;
    }
}
.services-grid {
    align-items: start;
}


.top-contact span {
    margin-right: 15px;
}

.whatsapp-btn {
    margin-left: 10px;
text-decoration:none;
}


/* ============================================================
   SAYFALAR
============================================================ */


.service-hero {
    background: #1e2a38;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.service-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.service-content {
    padding: 60px 0;
}

.service-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    margin-bottom: 20px;
}

.service-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.service-list li {
    margin-bottom: 10px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.teklif-btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 20px;
}

.btn-primary:hover {
    background: #0056b3;
}

/* =========================================================
   HAKKIMIZDA SAYFASI
========================================================= */

.hakkimizda-section {
    padding: 100px 0;
    background: #f8fafc;
}

.hakkimizda-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hakkimizda-badge {
    display: inline-block;
    background: #0d2b4f;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.hakkimizda-content h2 {
    font-size: 34px;
    color: #0d2b4f;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hakkimizda-intro {
    font-weight: 600;
    margin-bottom: 20px;
}

.hakkimizda-content p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.hakkimizda-features {
    margin-top: 25px;
    margin-bottom: 30px;
}

.hakkimizda-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #0d2b4f;
}

.hakkimizda-feature-item i {
    color: #f59e0b;
    font-size: 18px;
}

.hakkimizda-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hakkimizda-btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
}

/* Responsive */
@media(max-width:992px){
    .hakkimizda-grid{
        grid-template-columns: 1fr;
        text-align:center;
    }

    .hakkimizda-feature-item{
        justify-content:center;
    }
}
/* =========================================================
   TAŞIMACILIK HİZMETLERİ
========================================================= */

.tasimacilik-section {
    padding: 100px 0;
    background: #f8fafc;
}

.tasimacilik-header {
    text-align: center;
    margin-bottom: 60px;
}

.tasimacilik-badge {
    display: inline-block;
    background: #0d2b4f;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 15px;
}

.tasimacilik-header h2 {
    font-size: 36px;
    color: #0d2b4f;
    margin-bottom: 15px;
}

.tasimacilik-header p {
    max-width: 650px;
    margin: 0 auto;
    color: #555;
}

.tasimacilik-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .tasimacilik-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tasimacilik-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.tasimacilik-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.tasimacilik-card i {
    font-size: 32px;
    color: #f59e0b;
    margin-bottom: 15px;
}

.tasimacilik-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #0d2b4f;
}

.tasimacilik-card p {
    font-size: 14px;
    color: #555;
}

.tasimacilik-cta {
    text-align: center;
    margin-top: 60px;
}

.tasimacilik-hero {
    background: linear-gradient(rgba(13,43,79,0.85), rgba(13,43,79,0.85)),
                url('../img/tasimacilik-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.tasimacilik-hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.tasimacilik-hero p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}








/* Responsive */
@media(max-width:992px){
    .tasimacilik-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .tasimacilik-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   MOTOKURYE SAYFASI
========================================================= */

.kurye-hero {
    background: linear-gradient(rgba(13,43,79,0.85), rgba(13,43,79,0.85)),
                url('../img/motokurye-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.kurye-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.kurye-hero p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.kurye-cta-btn {
    padding: 14px 35px;
    border-radius: 50px;
}

/* HİZMET KARTLARI */

.kurye-section {
    padding: 100px 0;
    background: #f8fafc;
}

.kurye-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.kurye-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.kurye-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.kurye-card i {
    font-size: 30px;
    color: #f59e0b;
    margin-bottom: 15px;
}

.kurye-card h3 {
    margin-bottom: 10px;
    color: #0d2b4f;
}

/* AVANTAJLAR */

.kurye-advantages {
    padding: 100px 0;
    background: #0d2b4f;
    color: #fff;
    text-align: center;
}

.kurye-advantages h2 {
    font-size: 34px;
    margin-bottom: 50px;
}

.kurye-adv-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.kurye-adv-item {
    font-weight: 600;
}

.kurye-adv-item i {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
    color: #f59e0b;
}

.kurye-bottom-cta {
    margin-top: 20px;
}

/* Responsive */

@media(max-width:992px){
    .kurye-grid,
    .kurye-adv-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px){
    .kurye-grid,
    .kurye-adv-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   İLETİŞİM SAYFASI
========================================================= */

.iletisim-hero {
    background: #0d2b4f;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.iletisim-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.iletisim-hero p {
    max-width: 650px;
    margin: auto;
    opacity: 0.9;
}

.iletisim-section {
    padding: 100px 0;
    background: #f8fafc;
}
.iletisim-map {
    width: 450px;     /* Sabit genişlik */
    margin-top: 25px;
}

.iletisim-map iframe {
    width: 100%;
    height: 300px;
}


.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

/* SOL BİLGİ */

.iletisim-info h2 {
    margin-bottom: 30px;
    color: #0d2b4f;
}

.iletisim-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.iletisim-item i {
    font-size: 22px;
    color: #f59e0b;
    margin-top: 5px;
}

.iletisim-item strong {
    display: block;
    color: #0d2b4f;
}

/* FORM */

.iletisim-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.iletisim-form-box h2 {
    margin-bottom: 25px;
    color: #0d2b4f;
}

.iletisim-form-box input,
.iletisim-form-box select,
.iletisim-form-box textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.iletisim-form-box input:focus,
.iletisim-form-box select:focus,
.iletisim-form-box textarea:focus {
    outline: none;
    border-color: #0d2b4f;
}

.iletisim-form-box button {
    width: 100%;
    border-radius: 50px;
}

/* Responsive */

@media(max-width:992px){
    .iletisim-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   PANELVAN SAYFASI
========================================================= */

.panelvan-hero {
    background: linear-gradient(rgba(13,43,79,0.85), rgba(13,43,79,0.85)),
                url('../img/panelvan-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

.panelvan-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.panelvan-btn {
    border-radius: 50px;
    margin-top: 20px;
}

.panelvan-section {
    padding: 100px 0;
    background: #f8fafc;
}

.panelvan-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.panelvan-badge {
    display: inline-block;
    background: #0d2b4f;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.panelvan-content h2 {
    font-size: 34px;
    color: #0d2b4f;
    margin-bottom: 20px;
}

.panelvan-intro {
    font-weight: 600;
    margin-bottom: 20px;
}

.panelvan-features {
    margin-top: 25px;
}

.panelvan-feature-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.panelvan-feature-item i {
    color: #f59e0b;
}

.panelvan-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* AVANTAJ BLOĞU */

.panelvan-advantages {
    background: #0d2b4f;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.panelvan-adv-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
}

.panelvan-adv-card {
    background: #fff;
    color: #222;
    padding: 35px;
    border-radius: 20px;
    transition: 0.3s;
}

.panelvan-adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.panelvan-adv-card i {
    font-size: 30px;
    color: #f59e0b;
    margin-bottom: 10px;
}
.panelvan-content-cta {
    margin-top: 30px;
}

.panelvan-content-cta .btn-primary {
    border-radius: 50px;
    padding: 14px 30px;
}

/* Responsive */

@media(max-width:992px){
    .panelvan-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .panelvan-adv-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   MOTOKURYE SAYFASI
========================================================= */

.motokurye-hero {
    background: linear-gradient(rgba(13,43,79,0.85), rgba(13,43,79,0.85)),
                url('../img/motokurye-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.motokurye-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.motokurye-section {
    padding: 100px 0;
    background: #f8fafc;
}

.motokurye-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.motokurye-badge {
    display: inline-block;
    background: #0d2b4f;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.motokurye-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #0d2b4f;
}

.motokurye-intro {
    font-weight: 600;
    margin-bottom: 20px;
}

.motokurye-features {
    margin-top: 25px;
}

.motokurye-feature-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.motokurye-feature-item i {
    color: #f59e0b;
}

.motokurye-content-cta {
    margin-top: 30px;
}

.motokurye-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* AVANTAJ */

.motokurye-advantages {
    background: #0d2b4f;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.motokurye-adv-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
}

.motokurye-adv-card {
    background: #fff;
    color: #222;
    padding: 35px;
    border-radius: 20px;
    transition: 0.3s;
}

.motokurye-adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.motokurye-adv-card i {
    font-size: 28px;
    color: #f59e0b;
    margin-bottom: 10px;
}

/* Responsive */

@media(max-width:992px){
    .motokurye-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .motokurye-adv-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   ŞEHİRLERARASI TAŞIMACILIK
========================================================= */

.sehirlerarasi-hero {
    background: linear-gradient(rgba(13,43,79,0.85), rgba(13,43,79,0.85)),
                url('../img/sehirlerarasi-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.sehirlerarasi-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.sehirlerarasi-section {
    padding: 100px 0;
    background: #f8fafc;
}

.sehirlerarasi-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.sehirlerarasi-badge {
    display: inline-block;
    background: #0d2b4f;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.sehirlerarasi-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #0d2b4f;
}

.sehirlerarasi-intro {
    font-weight: 600;
    margin-bottom: 20px;
}

.sehirlerarasi-features {
    margin-top: 25px;
}

.sehirlerarasi-feature-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.sehirlerarasi-feature-item i {
    color: #f59e0b;
}

.sehirlerarasi-cta {
    margin-top: 30px;
}

.sehirlerarasi-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* AVANTAJ */

.sehirlerarasi-advantages {
    background: #0d2b4f;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.sehirlerarasi-adv-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
}

.sehirlerarasi-adv-card {
    background: #fff;
    color: #222;
    padding: 35px;
    border-radius: 20px;
    transition: 0.3s;
}

.sehirlerarasi-adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.sehirlerarasi-adv-card i {
    font-size: 28px;
    color: #f59e0b;
    margin-bottom: 10px;
}

/* Responsive */

@media(max-width:992px){
    .sehirlerarasi-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sehirlerarasi-adv-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   EVDEN EVE NAKLİYAT
========================================================= */

.evdeneve-hero {
    background: linear-gradient(rgba(13,43,79,0.85), rgba(13,43,79,0.85)),
                url('../img/evdeneve-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.evdeneve-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.evdeneve-section {
    padding: 100px 0;
    background: #f8fafc;
}

.evdeneve-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.evdeneve-badge {
    display: inline-block;
    background: #0d2b4f;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.evdeneve-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #0d2b4f;
}

.evdeneve-intro {
    font-weight: 600;
    margin-bottom: 20px;
}

.evdeneve-features {
    margin-top: 25px;
}

.evdeneve-feature-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.evdeneve-feature-item i {
    color: #f59e0b;
}

.evdeneve-cta {
    margin-top: 30px;
}

.evdeneve-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* AVANTAJ */

.evdeneve-advantages {
    background: #0d2b4f;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.evdeneve-adv-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
}

.evdeneve-adv-card {
    background: #fff;
    color: #222;
    padding: 35px;
    border-radius: 20px;
    transition: 0.3s;
}

.evdeneve-adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.evdeneve-adv-card i {
    font-size: 28px;
    color: #f59e0b;
    margin-bottom: 10px;
}

/* Responsive */

@media(max-width:992px){
    .evdeneve-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .evdeneve-adv-grid {
        grid-template-columns: 1fr;
    }
}

.success-message{
    max-width: 600px;
    margin: 20px auto;
    background: #16a34a;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn{
    from{opacity:0; transform:translateY(-10px);}
    to{opacity:1; transform:translateY(0);}
}

.form-success{
    background:#16a34a;
    color:#fff;
    padding:12px;
    border-radius:8px;
    margin-bottom:15px;
    text-align:center;
    font-size:14px;
}

/* ===== MESAJ KARAKTER SAYACI ===== */

.char-counter{
    font-size:13px;
    color:#6b7280;
    margin-top:-10px;   /* textarea'ya yapışır */
    margin-bottom:15px;
    text-align:left;
    transition:0.2s;
}

.char-counter.warning{
    color:#ef4444 !important;
    font-weight:600;
}

.iletisim-form-box textarea{
    min-height: 140px;
    max-height: 240px;
    resize: vertical; /* kullanıcı isterse uzatabilir */
}
.seo-hidden{
    position:absolute;
    left:-9999px;
    width:1px;
    height:1px;
    overflow:hidden;
}


/* WHATSAPP FLOAT BUTTON */

.whatsapp-float {
position: fixed;
bottom: 25px;
right: 25px;
background: #25D366;
color: white;
font-size: 28px;
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.25);
z-index: 9999;
text-decoration: none;
transition: 0.3s;
}

.whatsapp-float:hover {
transform: scale(1.1);
}
@media(max-width:768px){

.whatsapp-float{
width:55px;
height:55px;
font-size:24px;
bottom:20px;
right:20px;
}

}

/* FLOAT CONTACT BUTTONS */

.contact-float {
position: fixed;
bottom: 25px;
right: 25px;
display: flex;
flex-direction: column;
gap: 10px;
z-index: 9999;
}

.float-btn {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 26px;
color: white;
text-decoration: none;
box-shadow: 0 5px 15px rgba(0,0,0,0.25);
transition: 0.3s;
}

.float-btn:hover {
transform: scale(1.1);
}

.float-whatsapp {
background: #25D366;
}

.float-phone {
background: #007BFF;
}

/* mobil */

@media(max-width:768px){

.float-btn{
width:55px;
height:55px;
font-size:24px;
}

.contact-float{
bottom:20px;
right:20px;
}

}

.delete-btn{
background:#e74c3c;
color:white;
padding:6px 10px;
border-radius:4px;
text-decoration:none;
font-size:13px;
margin-left:5px;
}

.delete-btn:hover{
background:#c0392b;
}


@media(max-width:768px){

.hero-content{
width:90%;
padding:0 10px;
}

.hero-content h1{
font-size:22px;
line-height:1.35;
}

.hero-desc{
font-size:14px;
line-height:1.5;
}

.hero-buttons{
flex-direction:column;
gap:10px;
}

}


@media(max-width:768px){

.services-grid{
grid-template-columns:1fr;
}

}


@media(max-width:768px){

.menu{
flex-direction:column;
gap:10px;
}

}


@media(max-width:768px){

.slider-dots{
bottom:15px;
}

}

img{
display:block;
}