/**
 * Ana Stil Dosyası - Soyner Nakliyat
 * 
 * Bu dosya tüm site ana stillerini içerir.
 * Mobil stiller mobil.css'de.
 */

/* =====================================================
   RESET & ROOT
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f47700;
    --primary-hover: #df6500;
    --primary-light: #f4770020;
    --primary-dark: #cc5c00;
    
    --dark: #171717;
    --dark-light: #333;
    --gray: #666;
    --gray-light: #999;
    --gray-bg: #f7f7f7;
    --border: #eee;
    --white: #fff;
    
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.12);
    --shadow-hero: 0 20px 60px rgba(0,0,0,0.15);
    
    --radius: 15px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    
    --transition: .3s ease;
    --transition-slow: .5s ease;
    
    --font: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 92%;
    max-width: 1450px;
    margin: 0 auto;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading small {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    display: block;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 900;
    margin-top: 6px;
    letter-spacing: -1px;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading p {
    color: var(--gray);
    margin-top: 10px;
    font-size: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 119, 0, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* =====================================================
   HEADER
===================================================== */

header {
    height: 92px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    width: 92%;
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8a00, #f45100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    font-weight: 900;
    font-style: italic;
}

.logo-text {
    line-height: 1;
}

.logo-text strong {
    display: block;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-text span {
    display: block;
    color: var(--primary);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 5px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 38px;
}

.menu a {
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.menu a:hover,
.menu a.active {
    color: var(--primary);
}

.menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.header-phone small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    margin-bottom: 3px;
}

.header-phone strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
}

.mobile-menu {
    display: none;
    font-size: 25px;
    cursor: pointer;
}

/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 570px;
    background: linear-gradient(90deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,.98) 28%,
        rgba(255,255,255,.45) 54%,
        rgba(255,255,255,0) 75%),
        url("../resimler/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-inner {
    width: 92%;
    max-width: 1450px;
    margin: 0 auto;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    width: 57%;
    padding-top: 10px;
}

.hero-small {
    font-size: 29px;
    font-weight: 800;
    margin-bottom: 2px;
}

.hero h1 {
    font-size: clamp(55px, 6vw, 88px);
    line-height: .95;
    letter-spacing: -4px;
    font-weight: 900;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    max-width: 600px;
    margin-bottom: 28px;
}

.hero-features {
    display: flex;
    background: rgba(255,255,255,.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: fit-content;
    max-width: 100%;
}

.hero-feature {
    padding: 17px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid #ddd;
}

.hero-feature:last-child {
    border-right: 0;
}

.hero-feature i {
    font-size: 25px;
    color: var(--primary);
}

.hero-feature strong {
    font-size: 12px;
    line-height: 1.3;
}

/* Quote Box */
.quote-box {
    width: 340px;
    background: rgba(255,255,255,.97);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-hero);
}

.quote-box h2 {
    font-size: 27px;
    margin-bottom: 8px;
}

.quote-box h2 span {
    color: var(--primary);
}

.quote-box p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* =====================================================
   FORMS
===================================================== */

.form-group {
    position: relative;
    margin-bottom: 11px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 49px;
    border: 1px solid #e3e3e3;
    border-radius: var(--radius-sm);
    padding: 0 15px 0 43px;
    outline: none;
    font-family: var(--font);
    font-size: 13px;
    background: var(--white);
    transition: var(--transition);
}

.form-group textarea {
    height: 120px;
    padding-top: 12px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.quote-button {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.quote-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* =====================================================
   STATS
===================================================== */

.stats {
    margin-top: -35px;
    position: relative;
    z-index: 5;
}

.stats-inner {
    background: linear-gradient(135deg, #ff8a00, #f05b00);
    border-radius: 18px;
    padding: 23px 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(244, 119, 0, .25);
}

.stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-right: 1px solid rgba(255,255,255,.4);
}

.stat:last-child {
    border-right: 0;
}

.stat i {
    font-size: 32px;
}

.stat strong {
    font-size: 26px;
    display: block;
}

.stat span {
    font-size: 12px;
    opacity: .95;
}

/* =====================================================
   SERVICES
===================================================== */

.services {
    padding: 80px 0 70px;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 185px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 19px;
    text-align: center;
}

.service-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 800;
}

.service-content p {
    color: var(--gray);
    font-size: 12px;
    line-height: 1.6;
    min-height: 57px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.service-link:hover {
    gap: 14px;
}

/* =====================================================
   WHY US
===================================================== */

.why-us {
    padding: 70px 0;
    background: var(--gray-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content h2 {
    font-size: 42px;
    line-height: 1.1;
    margin: 8px 0 20px;
}

.why-content > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.why-item i {
    color: var(--primary);
    font-size: 23px;
}

.why-item strong {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.why-item span {
    color: #777;
    font-size: 12px;
    line-height: 1.5;
}

/* =====================================================
   REFERENCES
===================================================== */

.references {
    padding: 70px 0;
    background: var(--white);
}

.references-slider {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
    padding: 20px 0 30px;
    align-items: center;
}

.ref-item {
    min-width: calc(16.66% - 33px);
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all var(--transition);
    flex-shrink: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.ref-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.ref-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition);
}

.ref-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =====================================================
   WHAT WE DO
===================================================== */

.what-we-do {
    padding: 70px 0;
    background: var(--gray-bg);
}

.what-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 10px 0 20px;
}

.what-card {
    min-width: calc(25% - 23px);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
    flex-shrink: 0;
}

.what-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.what-card .what-image {
    height: 280px;
    overflow: hidden;
}

.what-card .what-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.what-card:hover .what-image img {
    transform: scale(1.08);
}

.what-card .what-body {
    padding: 25px 22px 28px;
    text-align: center;
}

.what-card .what-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.what-card .what-body p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.what-card .what-body .what-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.what-card .what-body .what-link:hover {
    gap: 14px;
}

/* =====================================================
   FAQ
===================================================== */

.faq {
    padding: 70px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 18px 0;
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    padding: 5px 0;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0;
}

.faq-answer.open {
    max-height: 200px;
    padding: 15px 0 5px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 15px;
}

/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials {
    padding: 70px 0;
    background: var(--gray-bg);
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 10px 0 20px;
}

.testimonial-card {
    min-width: calc(20% - 24px);
    background: var(--white);
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all var(--transition);
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(244,119,0,0.10);
    border-color: var(--primary);
}

.testimonial-card .t-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    border: 3px solid var(--primary);
    display: block;
}

.testimonial-card .t-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

.testimonial-card .t-title {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.testimonial-card .t-stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.testimonial-card .t-text {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

/* =====================================================
   SLIDER CONTROLS
===================================================== */

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* =====================================================
   PRICE CALCULATOR
===================================================== */

.price-calculator {
    padding: 70px 0;
    background: var(--gray-bg);
}

.price-calculator .calc-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 45px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.price-calculator .calc-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.price-calculator .form-group {
    margin-bottom: 0;
}

.price-calculator .form-group i {
    left: 15px;
}

.price-calculator .form-group input,
.price-calculator .form-group select {
    padding-left: 43px;
}

.price-calculator .calc-full-width {
    grid-column: span 2;
}

.price-calculator .calc-button {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.price-calculator .calc-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.price-calculator .calc-result {
    grid-column: span 2;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    padding-top: 5px;
    min-height: 45px;
}

.price-calculator .calc-result-inner {
    background: var(--primary-light);
    border-radius: 12px;
    padding: 15px 20px;
    border: 2px solid var(--primary);
    display: inline-block;
    width: 100%;
}

.price-calculator .calc-result-inner .route {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    display: block;
    margin-bottom: 4px;
}

.price-calculator .calc-result-inner .details {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
}

.price-calculator .calc-result-inner .price {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin-top: 6px;
}

.price-calculator .calc-result-inner .note {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

/* =====================================================
   CTA
===================================================== */

.cta {
    padding: 60px 0;
    background: var(--dark);
    color: var(--white);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.cta p {
    color: #bbb;
}

.cta-button {
    background: var(--primary);
    color: var(--white);
    padding: 17px 30px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #111;
    color: var(--white);
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-description {
    color: #aaa;
    line-height: 1.7;
    font-size: 13px;
    max-width: 350px;
}

footer h3 {
    font-size: 15px;
    margin-bottom: 18px;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 11px;
}

footer li a {
    color: #aaa;
    font-size: 13px;
    transition: var(--transition);
}

footer li a:hover {
    color: var(--primary);
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 13px;
}

.contact-item i {
    color: var(--primary);
    width: 18px;
}

.copyright {
    text-align: center;
    color: #777;
    font-size: 12px;
    padding-top: 22px;
}

/* =====================================================
   SCROLL ANIMATION
===================================================== */

.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all .45s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   RESPONSIVE (SADECE MOBİL/TABLET - MASAÜSTÜNE DOKUNMA!)
===================================================== */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-content {
        width: 55%;
    }
    
    .hero-features {
        display: none;
    }
    
    .ref-item {
        min-width: calc(25% - 30px);
    }
    
    .what-card {
        min-width: calc(33.33% - 20px);
    }
    
    .testimonial-card {
        min-width: calc(33.33% - 20px);
    }
}

@media (max-width: 900px) {
    .menu {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-phone {
        display: none;
    }
    
    /* HERO - MOBİL */
    .hero {
        min-height: 0 !important;
        height: auto !important;
        background: none !important;
        padding: 0 !important;
    }
    
    .hero picture {
        position: relative !important;
        display: block;
        width: 100%;
        height: auto !important;
        z-index: 0;
    }
    
    .hero picture img {
        width: 100%;
        height: auto !important;
        display: block;
        object-fit: cover !important;
    }
    
    .hero-inner {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        padding: 60px 15px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    
    .hero-content {
        width: 100% !important;
        text-align: left !important;
        padding: 0 !important;
    }
    
    .hero-small {
        font-size: 18px !important;
        margin-bottom: 5px !important;
    }
    
    .hero h1 {
        font-size: 32px !important;
        letter-spacing: -1px !important;
        margin-bottom: 10px !important;
        line-height: 1.1 !important;
    }
    
    .hero-description {
        font-size: 14px !important;
        max-width: 100% !important;
        margin-bottom: 15px !important;
    }
    
    .hero-features {
        display: none !important;
    }
    
    /* Quote Box - Gizle */
    .quote-box {
        display: none !important;
    }
    
    /* STATS - MOBİL */
    .stats {
        margin-top: 0 !important;
        position: relative !important;
        z-index: 1 !important;
        padding: 30px 0 !important;
    }
    
    .stats-inner {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        padding: 20px !important;
        border-radius: 12px !important;
    }
    
    .stat {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.2) !important;
        padding: 10px 0 !important;
        gap: 10px !important;
    }
    
    .stat:last-child {
        border-bottom: none !important;
    }
    
    .stat i {
        font-size: 24px !important;
    }
    
    .stat strong {
        font-size: 20px !important;
    }
    
    .stat span {
        font-size: 11px !important;
    }
    
    /* PRICE CALCULATOR */
    .price-calculator .calc-card {
        padding: 20px 15px !important;
    }
    
    .price-calculator .calc-form {
        grid-template-columns: 1fr !important;
    }
    
    .price-calculator .calc-full-width {
        grid-column: span 1 !important;
    }
    
    .price-calculator .calc-result {
        grid-column: span 1 !important;
    }
    
    .price-calculator .calc-button {
        height: 50px !important;
        font-size: 15px !important;
    }
    
    .section-heading h2 {
        font-size: 28px !important;
    }
    
    .section-heading p {
        font-size: 14px !important;
    }
    
    /* SERVICES */
    .services {
        padding: 40px 0 !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .service-image {
        height: 200px !important;
    }
    
    .service-content h3 {
        font-size: 17px !important;
    }
    
    .service-content p {
        min-height: auto !important;
        font-size: 13px !important;
    }
    
    /* WHY US */
    .why-us {
        padding: 40px 0 !important;
    }
    
    .why-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .why-image {
        height: 250px !important;
        border-radius: 15px !important;
    }
    
    .why-content h2 {
        font-size: 28px !important;
    }
    
    .why-content > p {
        font-size: 14px !important;
    }
    
    .why-list {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* REFERENCES */
    .references {
        padding: 40px 0 !important;
    }
    
    .ref-item {
        min-width: calc(50% - 15px) !important;
        height: 70px !important;
        padding: 12px !important;
    }
    
    .ref-item img {
        max-height: 35px !important;
    }
    
    .slider-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 14px !important;
    }
    
    /* WHAT WE DO */
    .what-we-do {
        padding: 40px 0 !important;
    }
    
    .what-card {
        min-width: 100% !important;
    }
    
    .what-card .what-image {
        height: 200px !important;
    }
    
    .what-card .what-body {
        padding: 20px 15px !important;
    }
    
    .what-card .what-body h3 {
        font-size: 18px !important;
    }
    
    .what-card .what-body p {
        font-size: 13px !important;
    }
    
    /* FAQ */
    .faq {
        padding: 40px 0 !important;
    }
    
    .faq-question {
        font-size: 15px !important;
        padding: 8px 0 !important;
    }
    
    .faq-question i {
        font-size: 18px !important;
        flex-shrink: 0 !important;
        margin-left: 10px !important;
    }
    
    .faq-answer p {
        font-size: 14px !important;
    }
    
    /* TESTIMONIALS */
    .testimonials {
        padding: 40px 0 !important;
    }
    
    .testimonial-card {
        min-width: 100% !important;
        padding: 20px 15px !important;
    }
    
    .testimonial-card .t-avatar {
        width: 60px !important;
        height: 60px !important;
    }
    
    .testimonial-card .t-name {
        font-size: 15px !important;
    }
    
    .testimonial-card .t-text {
        font-size: 13px !important;
    }
    
    /* BLOG */
    .blog-section {
        padding: 40px 0 !important;
    }
    
    .blog-section .container > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .blog-section .container > div:last-child > a > div:first-child {
        height: 180px !important;
    }
    
    .blog-section .container > div:last-child > a > div:last-child {
        padding: 15px !important;
    }
    
    .blog-section .container > div:last-child > a > div:last-child h3 {
        font-size: 16px !important;
    }
    
    /* CTA */
    .cta {
        padding: 40px 0 !important;
    }
    
    .cta-inner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }
    
    .cta h2 {
        font-size: 24px !important;
    }
    
    .cta p {
        font-size: 14px !important;
    }
    
    .cta-button {
        padding: 14px 25px !important;
        font-size: 14px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* FOOTER */
    footer {
        padding: 30px 0 20px !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding-bottom: 20px !important;
    }
    
    .footer-description {
        max-width: 100% !important;
    }
    
    footer h3 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }
    
    footer li a {
        font-size: 14px !important;
    }
    
    .contact-item {
        font-size: 14px !important;
    }
    
    .copyright {
        font-size: 12px !important;
        padding-top: 15px !important;
    }
}

@media (max-width: 600px) {

    .logo-text strong {
        font-size: 18px !important;
    }

    .logo-text span {
        font-size: 11px !important;
        letter-spacing: 1px !important;
    }

    .logo-symbol {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }

    header {
        height: 70px !important;
    }

    .header-inner {
        padding: 0 5px !important;
    }

    .logo img {
        max-height: 45px !important;
    }

    .mobile-menu {
        font-size: 22px !important;
    }

    /* =====================================================
       MOBİL SLIDER - 230px
    ===================================================== */

    .hero {
        min-height: 230px !important;
        height: 230px !important;
    }

    .hero-inner {
        min-height: 230px !important;
        height: 230px !important;
        padding: 15px !important;
    }

    .hero picture {
        height: 230px !important;
    }

    .hero picture img {
        width: 100% !important;
        height: 230px !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Hero yazıları */
    .hero-small {
        font-size: 16px !important;
    }

    .hero h1 {
        font-size: 26px !important;
        letter-spacing: -0.5px !important;
    }

    .hero-description {
        font-size: 13px !important;
    }

    /* =====================================================
       STATS - 600px altı
    ===================================================== */

    .stats-inner {
        grid-template-columns: 1fr !important;
        padding: 15px !important;
    }

    .stat {
        border-bottom: 1px solid rgba(255,255,255,0.2) !important;
        padding: 8px 0 !important;
    }

    .stat:last-child {
        border-bottom: none !important;
    }

    .stat i {
        font-size: 20px !important;
    }

    .stat strong {
        font-size: 18px !important;
    }

    /* =====================================================
       SECTION HEADINGS
    ===================================================== */

    .section-heading h2 {
        font-size: 24px !important;
    }

    .why-content h2 {
        font-size: 24px !important;
    }

    /* =====================================================
       CTA - 600px altı
    ===================================================== */

    .cta h2 {
        font-size: 22px !important;
    }

    .cta-button {
        padding: 12px 20px !important;
        font-size: 13px !important;
    }

    /* =====================================================
       REFERANSLAR
    ===================================================== */

    .ref-item {
        min-width: calc(50% - 10px) !important;
        height: 60px !important;
        padding: 8px !important;
    }

    .ref-item img {
        max-height: 30px !important;
    }

    /* =====================================================
       NELER YAPIYORUZ
    ===================================================== */

    .what-card .what-image {
        height: 180px !important;
    }

    /* =====================================================
       HİZMETLER
    ===================================================== */

    .service-image {
        height: 180px !important;
    }

    /* =====================================================
       NEDEN BİZ
    ===================================================== */

    .why-image {
        height: 200px !important;
    }

    /* =====================================================
       SLIDER BUTONLARI
    ===================================================== */

    .slider-btn {
        width: 34px !important;
        height: 34px !important;
        font-size: 12px !important;
    }

}