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

:root {
    --color-primary: #0f1d3a;
    --color-secondary: #1c2c4d;
    --color-accent: #ff6b3d;
    --color-accent-soft: #ffe0d2;
    --color-surface: #ffffff;
    --color-muted: #6b7a99;
    --color-section-bg: #f6f8fc;
    --color-border: rgba(15, 29, 58, 0.12);
    --shadow-soft: 0 18px 38px rgba(15, 29, 58, 0.08);
    --shadow-card: 0 14px 34px rgba(15, 29, 58, 0.10);
    --radius-card: 18px;
    --transition-base: all 0.25s ease;
}

html,
body {
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--color-section-bg);
    color: var(--color-primary);

}

body.no-scroll {
    overflow: hidden;
}

.topbar .contact-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(130deg, var(--color-accent), var(--color-accent-soft));
    color: var(--color-primary);
    border-radius: 999px;
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: 600;
    border: 1px solid transparent;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(255, 107, 61, 0.25);
}
.topbar .contact-btn:hover {
    background: var(--color-primary);
    color: var(--color-surface);
    border-color: transparent;
    box-shadow: 0 12px 22px rgba(15, 29, 58, 0.25);
}



/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Topbar */
.topbar {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #f5f7ff;
    font-size: 0.92rem;
    padding: 0.65rem 1.8rem;
    box-shadow: 0 10px 24px rgba(15, 29, 58, 0.18);
}

.topbar a {
    color: inherit;
    text-decoration: none;
    margin-left: 0.45rem;
    transition: var(--transition-base);
}

.topbar .divider {
    margin: 0 0.75rem;
    opacity: 0.5;
}

.topbar-left i {
    margin-right: 0.35rem;
}

.topbar-left .phone-link:hover,
.topbar a:hover {
    color: var(--color-accent);
}


/* NAVBAR GENEL */
.navbar {
    background-color: var(--color-surface);
    padding: 12px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 18px 28px rgba(15, 29, 58, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    height: 60px;
    transition: var(--transition-base);
}

.logo-link:hover {
    transform: scale(1.08);
}

.hamburger {
    display: none;
}


.nav-menu .nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu .nav-list>li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 16px;
    padding: 10px 18px;
    display: block;
    border-radius: 999px;
    transition: var(--transition-base);
}

.nav-menu a:hover {
    color: var(--color-accent);
    background-color: rgba(255, 107, 61, 0.12);
}

/* DROPDOWN */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--color-surface);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-card);
    flex-direction: column;
    padding: 8px;
    z-index: 1000;
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(15, 29, 58, 0.06);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    position: relative;
    overflow: hidden;
    padding: 12px 20px;
    white-space: nowrap;
    font-weight: 600;
    color: var(--color-primary);
    background-color: transparent;
    border-radius: 12px;
    z-index: 1;
}

.dropdown-menu a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 107, 61, 0.12), rgba(255, 107, 61, 0.35));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 12px;
    z-index: -1;
}

.dropdown-menu a:hover::before {
    transform: scaleX(1);
}

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

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown>a i {
    margin-left: 5px;
    font-size: 16px;
    transition: transform 0.3s;
}

.dropdown.open>a i {
    transform: rotate(180deg);
}



/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(15, 29, 58, 0.8), rgba(15, 29, 58, 0.55));
    z-index: 1;
}

.slide-content,
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.slide-content h1,
.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.15;
}

.slide-content p,
.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f2f2f2;
}

.hero-buttons,
.buttons,
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    color: var(--color-surface);
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition-base);
    border: 1px solid transparent;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 16px 28px rgba(255, 107, 61, 0.25);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(15, 29, 58, 0.2);
}

.btn-contact {
    background: var(--color-accent);
    border-color: transparent;
}

.btn-contact:hover {
    background: var(--color-primary);
    color: var(--color-surface);
}

.btn-about {
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-surface);
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
}

.btn-about:hover {
    background: var(--color-surface);
    color: var(--color-primary);
    border-color: transparent;
}




/* =======================
   Services Slider - Normal
   ======================= */
.services-slider {
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(15, 29, 58, 0.05), rgba(255, 107, 61, 0.08));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.services-slider h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--color-primary);
    letter-spacing: 0.01em;
}

/* Slider button style */
.slider-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 20px auto 10px;
}

/* Butonlara stil */
.slider-buttons button {
    background-color: var(--color-primary);
    color: var(--color-surface);
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 10px 20px rgba(15, 29, 58, 0.18);
}

.slider-buttons button:hover {
    background-color: var(--color-accent);
    box-shadow: 0 12px 26px rgba(255, 107, 61, 0.2);
}

.services-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: 1550px;
    margin: 0 auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-padding-left: 20px;
    /* opsiyonel hizalama */
}

.services-wrapper::-webkit-scrollbar {
    display: none;
}

.service-item {
    flex: 0 0 auto;
    width: 350px;
    background-color: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    text-align: center;
    transition: var(--transition-base);
    cursor: pointer;
    scroll-snap-align: start;
    margin-right: 16px;
    /* kartlar arası boşluk */
}

.services-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
    padding: 20px 40px;
    max-width: 100%;
    margin: 0 auto;
    min-width: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 29, 58, 0.12);
}

.service-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item p {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    padding: 20px 0;
}

.slider-dots {
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(15, 29, 58, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    background: var(--color-accent);
}




/* Info Banner / Middle Banner */
.info-banner {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(15, 29, 58, 0.04), rgba(255, 107, 61, 0.08));
}

.info-banner .container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0 auto;
}

.info-box {
    flex: 1 1 300px;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 38px rgba(15, 29, 58, 0.2);
}

.info-box.orange {
    background: linear-gradient(135deg, var(--color-accent), #ff8655);
}

.info-box.dark {
    background: linear-gradient(135deg, var(--color-primary), #1c2c4d);
}

.info-box.gray {
    background: linear-gradient(135deg, #9aa9ce, #6f82b9);
}

.info-box i {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
    color: #fff;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-box p {
    font-size: 16px;
    opacity: 0.85;
}


/* Midle Slider */

.slider-section {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}
/*-----------------------------------check----------------------------------*/
.slider1-wrapper {
    position: relative;
    max-width: 1320px;
    margin: auto;
    overflow: hidden;
}

.slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.slider img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
    scroll-snap-align: start;
    cursor: zoom-in;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slider img:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 28px rgba(15, 29, 58, 0.18);
}

.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 29, 58, 0.78);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.image-lightbox.open {
    display: flex;
}

.image-lightbox img {
    width: min(90vw, 1000px);
    max-height: 90vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
    cursor: zoom-out;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-primary, #0f1d3a);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 18px 32px rgba(15, 29, 58, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lightbox-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 22px 40px rgba(15, 29, 58, 0.28);
}

.lightbox-btn:active {
    transform: translateY(-50%) scale(0.96);
}

.lightbox-btn.prev {
    left: clamp(12px, 4vw, 40px);
}

.lightbox-btn.next {
    right: clamp(12px, 4vw, 40px);
}

@media (max-width: 640px) {
    .lightbox-btn {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
}

/* === Slider Buttons === */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* === Responsive === */
@media (max-width: 768px) {

    .slide-content h1,
    .hero-content h1 {
        font-size: 36px;
    }

    .slide-content p,
    .hero-content p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .slider-btn {
        font-size: 20px;
        padding: 8px 12px;
    }

    .slider {
        gap: 15px;
    }
}


/* Split Banner */

.split-banner {
    display: flex;
    flex-wrap: wrap;
    min-height: 300px;
    color: white;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.split-left,
.split-right {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 300px;
}


.split-left {
    background: linear-gradient(135deg, var(--color-primary), #1b2d4a);
    flex-direction: column;
    text-align: left;
}

.split-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.split-left p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
}

.split-right {
    background: linear-gradient(135deg, var(--color-accent), #ff8655);
}

.split-btn {
    background: var(--color-surface);
    color: var(--color-primary);
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(15, 29, 58, 0.18);
    transition: var(--transition-base);
}

.split-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-surface);
}

/* Working Process Section */
.working-process {
    background: linear-gradient(135deg, rgba(15, 29, 58, 0.03), rgba(255, 107, 61, 0.05));
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.working-process h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1e1e1e;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.process-description {
    font-size: 16px;
    color: var(--color-muted);
    max-width: 700px;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.step {
    background-color: var(--color-surface);
    border-radius: var(--radius-card);
    padding: 30px;
    width: 280px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    text-align: center;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 40px rgba(15, 29, 58, 0.14);
}

.step img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 18px;
    color: var(--color-accent);
    font-weight: bold;
    margin-bottom: 10px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--color-muted);
}

.arrow {
    font-size: 24px;
    color: rgba(15, 29, 58, 0.18);
    align-self: center;
    margin: 0 10px;
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: linear-gradient(135deg, rgba(15, 29, 58, 0.04), rgba(255, 107, 61, 0.06));
    padding: 80px 20px;
}

.container-why {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.why-title {
    flex: 1 1 100%;
    max-width: 300px;
    text-align: left;
    margin-top: 120px;
}

.why-title h2 {
    font-size: 56px;
    font-weight: 900;
    color: #1e1e1e;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex: 1 1 600px;
    gap: 30px;
}


.why-box {
    background-color: var(--color-surface);
    border-radius: var(--radius-card);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    border-top: 4px solid var(--color-accent);
}

.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 38px rgba(15, 29, 58, 0.15);
}

.why-box i {
    font-size: 40px;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.why-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.why-box p {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Stat Section */
.stats-section {
    background: linear-gradient(135deg, rgba(15, 29, 58, 0.04), rgba(15, 29, 58, 0.08));
    padding: 60px 20px;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    gap: 30px;
}

.stat-box {
    flex: 1 1 200px;
}

.stat-box h2 {
    font-size: 48px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-box .underline {
    width: 40px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 0 auto 10px;
}

.stat-box p {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 600;
}



/*Testimonial Section */


.testimonial-section {
    margin-top: 80px;
}

.testimonial-header.modern {
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


.testimonial-header.modern .subtitle {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    background: rgba(255, 107, 61, 0.12);
    padding: 7px 18px;
    border-radius: 32px;
    margin-bottom: 18px;
    margin-top: 0;
    box-shadow: 0 0 0 3px rgba(255, 107, 61, 0.18);
}

.testimonial-header.modern .title {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.24;
    letter-spacing: -1px;
}

.testimonial-header.modern .title .highlight {
    color: var(--color-accent);
    display: inline-block;
    position: relative;
    background: linear-gradient(90deg, rgba(255, 107, 61, 0.18) 60%, transparent 100%);
    padding: 0 7px;
    border-radius: 6px 12px 6px 12px;
    z-index: 1;
}

.testimonial-header.modern .description {
    font-size: 17px;
    color: var(--color-muted);
    margin-top: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.testimonial-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slider-wrapper {
    flex: 1;
    display: flex;
    overflow: visible;
    justify-content: center;
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 340px;
    gap: 0;
    pointer-events: none;
}

.testimonial-card {
    position: absolute;
    left: 50%;
    top: 0;
    width: 340px;
    max-width: 92vw;
    min-height: 330px;
    background: var(--color-surface);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    padding: 32px 28px;
    opacity: 0;
    transform: translate(-50%, 0) scale(0.7);
    z-index: 1;
    pointer-events: none;
    transition:
        transform 0.45s cubic-bezier(.44, .13, .48, .87),
        opacity 0.3s,
        box-shadow 0.3s,
        filter 0.3s;
}

.testimonial-card.center {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    z-index: 5;
    box-shadow: 0 24px 48px rgba(15, 29, 58, 0.18), 0 12px 36px rgba(255, 107, 61, 0.16);
    filter: none;
    pointer-events: auto;
}

.testimonial-card.left,
.testimonial-card.right {
    opacity: 0.55;
    z-index: 3;
    transform: translate(-50%, 0) scale(0.83);
    filter: blur(1px) grayscale(0.2) brightness(0.9);
    pointer-events: auto;
}

.testimonial-card.left {
    transform: translate(calc(-50% - 180px), 0) scale(0.83);
}

.testimonial-card.right {
    transform: translate(calc(-50% + 180px), 0) scale(0.83);
}

.testimonial-card.far-left,
.testimonial-card.far-right {
    opacity: 0.18;
    z-index: 1;
    transform: translate(-50%, 0) scale(0.65);
    filter: blur(2.5px) grayscale(0.5) brightness(0.8);
    pointer-events: none;
}

.testimonial-card.far-left {
    transform: translate(calc(-50% - 340px), 0) scale(0.65);
}

.testimonial-card.far-right {
    transform: translate(calc(-50% + 340px), 0) scale(0.65);
}

/* Kart içi stil */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.client-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2.5px solid var(--color-accent);
    background: #fff;
}

.client-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

.review-text {
    font-size: 15px;
    color: var(--color-muted);
    margin-bottom: 16px;
    line-height: 1.5;
    margin-top: 6px;
}

.stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Button */
.testimonial-btn {
    background: var(--color-primary);
    color: var(--color-surface);
    border: none;
    font-size: 27px;
    cursor: pointer;
    padding: 13px 17px;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(15, 29, 58, 0.18);
    transition: var(--transition-base);
    opacity: 0.95;
    z-index: 10;
    position: relative;
}

.testimonial-btn:hover {
    background-color: var(--color-accent);
    transform: scale(1.08);
    opacity: 1;
}



/* Footer Section */
.custom-footer {
    background: radial-gradient(circle at top, rgba(255, 107, 61, 0.08), rgba(15, 29, 58, 0.08) 40%, rgba(15, 29, 58, 0.12));
    color: var(--color-primary);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    margin-top: 50px;
}

.footer-overlay {
    padding: 40px 20px 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.footer-logo.left {
    flex: 1 1 220px;
    text-align: left;
    margin-top: -10px;
    min-width: 180px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 16px;
}

.social-icons {
    margin-top: 7px;
    display: flex;
    gap: 14px;
}

.social-icons a {
    background: var(--color-surface);
    padding: 10px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    box-shadow: 0 8px 18px rgba(15, 29, 58, 0.12);
}

.social-icons a:hover {
    background: var(--color-accent);
    color: var(--color-surface);
    transform: translateY(-3px);
}

.footer-menu {
    flex: 1 1 160px;
    min-width: 150px;
    margin-top: 8px;
}

.footer-menu h4 {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--color-primary);
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-base);
}

.footer-menu ul li a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: var(--color-muted);
    padding: 26px 0 18px 0;
    margin-top: 18px;
    border-top: 2px solid rgba(15, 29, 58, 0.08);
}

.footer-bottom a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: var(--color-primary);
}



/* ===============================
   RESPONSIVE TASARIM - GENEL

/*topbar responsive */
@media (max-width: 768px) {
    .topbar-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .topbar-left,
    .topbar-right {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }

    .topbar .divider {
        display: none;
    }

    .topbar a {
        font-size: 0.85rem;
    }

    .topbar .contact-btn {
        display: inline-flex;
        padding: 6px 14px;
        font-size: 0.82rem;
        background: linear-gradient(135deg, var(--color-accent), var(--color-accent-soft));
        border-radius: 999px;
        margin-top: 6px;
    }
}


/* =======================
   GENEL: Masaüstünde hamburger gizli
   ======================= */
@media (max-width: 900px) {
    .navbar-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 12px;
        max-width: 100%;
    }

    .logo {
        height: 48px;
    }

.hamburger {
     display: block;
     background: none;
     border: none;
     font-size: 28px;
     cursor: pointer;
     color: var(--color-primary);
     margin-left: auto;
     z-index: 9999;
     /* çok yüksek tut! */
     position: relative;
 }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-surface);
        width: 100%;
        padding: 18px 0 40px 0;
        box-shadow: 0 16px 38px rgba(15, 29, 58, 0.16);
        flex-direction: column;
        align-items: stretch;
        display: none;
        z-index: 1200;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        border: 1px solid rgba(15, 29, 58, 0.06);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        width: 100%;
    }

    .nav-menu .nav-list>li {
        width: 100%;
        border-bottom: 1px solid rgba(15, 29, 58, 0.08);
    }

    .nav-menu .nav-list>li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 17px;
        padding: 16px 28px;
        width: 100%;
        color: var(--color-primary);
        text-align: left;
        border-radius: 14px;
        background: none;
    }

    .dropdown {
        position: relative;
    }

    /* Mobilde dropdown kapalıyken gizli, açınca göster */
    .dropdown-menu {
        display: none !important;
        position: absolute;
        box-shadow: none;
        background: transparent;
        top: 100%;
        left: 0;
        min-width: 0;
        padding: 0;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        transition: all 0.3s;
        border-radius: 0;
    }

    .dropdown.open .dropdown-menu {
        display: flex !important;
        height: auto;
        padding: 12px 22px;
        background: rgba(246, 248, 252, 0.95);
        border-radius: 14px;
    }

    .dropdown-menu a {
        padding: 12px 8px 12px 38px;
        font-size: 16px;
        color: var(--color-primary);
        background: none;
        border-radius: 12px;
        font-weight: 500;
    }

    .dropdown>a i {
        float: right;
        margin-left: 5px;
        font-size: 18px;
        transition: transform 0.3s;
    }

    .dropdown.open>a i {
        transform: rotate(180deg);
    }

    /* Masaüstündeki hover ile açılmayı devre dışı bırak */
    .dropdown:hover .dropdown-menu {
        display: none;
    }
}


/* RESPONSIVE HERO SLIDER */

@media (max-width: 1200px) {
    .slide-content h1 {
        font-size: 44px;
    }
}

@media (max-width: 900px) {
    .hero-slider {
        height: 55vh;
        min-height: 320px;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 17px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 15px;
    }

    .slide-content {
        max-width: 95%;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        height: 52vh;
        min-height: 260px;
    }

    .slide-content h1 {
        font-size: 26px;
    }

    .slide-content p {
        font-size: 15px;
    }

    .btn {
        padding: 8px 10px;
        font-size: 13px;
    }

    .buttons,
    .hero-buttons {
        gap: 10px;
    }
}


/* ===========================
   Services Slider - Responsive
   =========================== */

/* 1200px ve altı: 3'lü grid */
@media (max-width: 1200px) {
    .services-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 20px 10px;
    }

    .service-item {
        width: 100%;
    }
}

/* 900px ve altı: Yatay kaydırmalı, flex görünüm */
@media (max-width: 900px) {
    .services-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        width: 100vw;
        -webkit-overflow-scrolling: touch;
    }

    .services-container {
        display: flex;
        flex-direction: row;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 12px;
        padding: 0 10px;
    }

   .service-item {
       flex: 0 0 100vw;
       max-width: 100vw;
       width: 100vw;
       margin: 0 !important;
       scroll-snap-align: start;
       border-radius: 10px;
       overflow: hidden;
       display: flex;
       flex-direction: column;
   }

   .service-item img {
       width: 100%;
       aspect-ratio: 16 / 9;
       /* Oranı sabitle */
       object-fit: cover;
       display: block;
   }

    .slider-buttons {
        justify-content: center;
        margin-top: 20px;
    }

    .slider-dots {
        display: none !important;
    }
}

/* 600px ve altı: Kart tam genişlikte */
@media (max-width: 600px) {
    .services-container {
        gap: 12px;
        padding: 0;
    }

    .service-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .service-item img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .service-item p {
        font-size: 16px;
        padding: 14px 0;
    }

    .slider-buttons {
        flex-direction: row;
        justify-content: center;
        margin-top: 10px;
    }

    .slider-buttons button {
        padding: 8px 12px;
        font-size: 15px;
    }
}




/*   Info Banner - Responsive
   ========================= */

   @media (max-width: 1200px) {
  .info-banner .container {
    gap: 20px;
    padding: 0 10px;
  }

  .info-box {
    padding: 25px 16px;
  }


  
  .info-box h3 {
    font-size: 20p
  }

  .info-box p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .info-banner {
    padding: 40px 16px;
  }

  .info-banner .container {
    flex-direction: column;
    gap: 16px;
    max-width: 1100px;
        margin: 0 auto;
        display: flex;
    padding:  20px;
    align-items: stretch;
  }

  .info-box {
      display: flex;
      flex-direction: column;
      /* dikey hizalama */
      justify-content: center;
      /* dikeyde ortala */
      align-items: center;
      /* yatayda ortala */
      text-align: center;
      /* metinleri ortala */
      height: 100%;
      /* kapsayıcı yükseklik dolmalı */
        min-height: 120px;
  }

  .info-box h3 {
    font-size: 18px;
  }

  .info-box p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .info-box i {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .info-box h3 {
    font-size: 17px;
  }

  .info-box p {
    font-size: 13.5px;
  }
}



/* Wy Choose Us Section - Responsive */

@media (max-width: 1024px) {
    .container-why {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-title {
        margin-top: 40px;
        max-width: 100%;
        text-align: center;
    }

    .why-title h2 {
        font-size: 42px;
    }

    .why-boxes {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .why-title h2 {
        font-size: 36px;
    }

    .why-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-box {
        width: 100%;
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .why-title h2 {
        font-size: 30px;
    }

    .why-box {
        padding: 20px;
    }

    .why-box h3 {
        font-size: 18px;
    }

    .why-box p {
        font-size: 14px;
    }
}




/* Working Process Section - Responsive */

@media (max-width: 1024px) {
    .working-process {
        padding: 80px 20px;
    }

    .working-process h2 {
        font-size: 32px;
    }

    .process-description {
        font-size: 15px;
        max-width: 600px;
        margin-bottom: 40px;
    }

    .process-steps {
        gap: 30px;
    }

    .step {
        width: 240px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .working-process {
        padding: 60px 16px;
    }

    .working-process h2 {
        font-size: 28px;
    }

    .process-description {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .step {
        width: 90%;
        max-width: 400px;
    }

    .arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .working-process h2 {
        font-size: 24px;
    }

    .step {
        padding: 20px;
    }

    .step h3 {
        font-size: 18px;
    }

    .step p {
        font-size: 13px;
    }

    .step img {
        width: 80px;
        height: 80px;
    }
}


/* Stats Section - Responsive */
@media (max-width: 1024px) {
    .stats-section {
        padding: 50px 16px;
    }

    .stat-box h2 {
        font-size: 40px;
    }

    .stat-box p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .stat-box {
        width: 100%;
        max-width: 400px;
    }

    .stat-box h2 {
        font-size: 36px;
    }

    .stat-box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 40px 12px;
    }

    .stat-box h2 {
        font-size: 32px;
    }

    .stat-box p {
        font-size: 13px;
    }

    .stat-box .underline {
        width: 30px;
    }
}


/*Testimonial Section - Responsive */


@media (max-width: 900px) {
    .testimonial-card {
        width: 95vw;
        min-height: 250px;
        padding: 22px 7vw;
    }


    .testimonial-card.left,
    .testimonial-card.right {
        transform: translate(-50%, 0) scale(0.79);
    }

    .testimonial-card.left {
        transform: translate(calc(-50% - 110px), 0) scale(0.79);
    }

    .testimonial-card.right {
        transform: translate(calc(-50% + 110px), 0) scale(0.79);
    }

    .testimonial-card.far-left,
    .testimonial-card.far-right {
        transform: translate(-50%, 0) scale(0.63);
    }

    .testimonial-card.far-left {
        transform: translate(calc(-50% - 220px), 0) scale(0.63);
    }

    .testimonial-card.far-right {
        transform: translate(calc(-50% + 220px), 0) scale(0.63);
    }
}


@media (max-width: 700px) {
    .testimonial-header.modern {
        max-width: 98vw;
        margin-bottom: 32px;
    }

    .testimonial-header.modern .title {
        font-size: 24px;
    }

    .testimonial-header.modern .description {
        font-size: 15px;
    }
}
/* Ortak stiller */
.testimonial-btn.prev,
.testimonial-btn.next {
    display: inline-block;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.10);
    font-size: 22px;
    padding: 9px 13px;
    width: 48px;
    height: 48px;
}

/* Mobil (600px ve altı) */
@media (max-width: 600px) {
    .testimonial-slider-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-width: 100vw;
        display: flex;
    }

    .testimonial-btn.prev,
    .testimonial-btn.next {
        position: static !important;
        margin: 16px 8px 0 8px;
        order: 2;
    }

    .testimonial-slider-wrapper {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 99vw;
        min-height: 190px;
        padding: 10px 3vw;
    }

    .client-info img {
        width: 48px;
        height: 48px;
    }

    .testimonial-slider {
        width: 100%;
    }
}

/* Tablet ve üstü (601px ve üstü) */
@media (min-width: 601px) {
    .testimonial-slider-container {
        flex-direction: row;
    }

    .testimonial-btn.prev,
    .testimonial-btn.next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        font-size: 27px;
        box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
        padding: 13px 17px;
        width: auto;
        height: auto;
    }

    .testimonial-btn.prev {
        left: -38px;
    }

    .testimonial-btn.next {
        right: -38px;
    }
}


/*Footer Section - Responsive */

/* --- Responsive --- */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        padding: 0 10px;
    }

    .footer-logo.left {
        text-align: center;
        margin: 0 0 10px 0;
    }

    .social-icons {
        justify-content: center;
        display: none;
    }

    .footer-menu {
        text-align: center;
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .footer-overlay {
        padding: 25px 5vw 0 5vw;
    }

    .footer-inner {
        gap: 16px;
    }

    .footer-logo img {
        max-width: 140px;
    }

    .footer-menu h4 {
        font-size: 15.5px;
    }

    .footer-menu ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 16px 0 10px 0;
        margin-top: 10px;
    }
}
