* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
}

h4 {
    font-size: 36px;
    font-weight: 500;
    color: #F37021;

}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: transform 0.3s ease;
}

header.scrolled {
    transform: translateX(0);
    background: rgba(83, 21, 147, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

header .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hamburger-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px;
}

header.scrolled .hamburger-menu-btn {
    display: flex !important;
}

header.scrolled nav {
    display: none !important;
}

header.scrolled .whatsapp-contact {
    display: none !important;
}

.hamburger-menu-btn span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu-btn:hover {
    background: #d95f1a;
}

.hamburger-menu-btn:hover span {
    width: 32px;
}

.logo img {
    height: 50px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 320px;
    height: 100%;
    background: #531593;
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-header {
    padding: 25px 30px;
    background: #531593;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    height: 40px;
    display: block;
    width: auto;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 0;
}

.mobile-nav-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.mobile-nav-close span:first-child {
    transform: rotate(45deg);
}

.mobile-nav-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-nav-menu {
    flex: 1;
    padding: 10px 0;
    overflow-y: auto;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-menu ul li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.mobile-nav-menu ul li:last-child {
    border-bottom: none;
}

.mobile-nav-menu ul li a {
    display: block;
    padding: 18px 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.mobile-nav-menu ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #F37021;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-menu ul li a:hover,
.mobile-nav-menu ul li a.active {
    background: rgba(243, 112, 33, 0.15);
    padding-left: 38px;
    color: #F37021;
}

.mobile-nav-menu ul li a:hover::before,
.mobile-nav-menu ul li a.active::before {
    transform: scaleY(1);
}

.mobile-nav-contact {
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-whatsapp > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-whatsapp img {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.mobile-whatsapp-label {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

.mobile-whatsapp-number {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

nav {
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #F37021;
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-contact img {
    width: 40px;
    height: 40px;
}

.whatsapp-info {
    display: flex;
    flex-direction: column;
}

.whatsapp-label {
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
}

.whatsapp-number {
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.3;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide[style*="display: block"] {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: heroZoomIn 2s ease-out forwards;
}

@keyframes heroZoomIn {
    0% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.star-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    animation: starEntrance 1.2s ease-out 0.5s backwards, starPulse 2s ease-in-out 2s infinite;
}

@keyframes starEntrance {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.hero-text h1 {
    font-size: 55px;
    font-weight: 500;
    animation: slideInLeft 1s ease-out 0.8s backwards;
    color: #F37021;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.5;
    animation: slideInLeft 1s ease-out 1.1s backwards;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-arrow {
    display: none;
}

.hero-arrow:hover {
    background: rgba(243, 112, 33, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.15);
    opacity: 1;
    box-shadow: 0 8px 20px rgba(243, 112, 33, 0.4);
}

.hero-arrow svg {
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-arrow-left {
    left: 40px;
}

.hero-arrow-right {
    right: 40px;
}

.slide-controls {
    display: flex;
    gap: 15px;
    position: absolute;
    bottom: 80px;
    left: 0;
    margin-left: calc((100% - 1600px) / 2 + 60px);
    z-index: 100;
}

@media (max-width: 1720px) {
    .slide-controls {
        margin-left: 60px;
    }
}

.slide-line {
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.slide-line.active {
    background: #ffffff;
    width: 70px;
}

.teklif-tab {
    position: fixed;
    right: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    background: #F37021;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    z-index: 999;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-radius: 10px;
}

.teklif-tab:hover {
    background: #d95f1a;
}

.teklif-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9999;
    display: none;
    pointer-events: none;
}

.teklif-form-overlay.active {
    display: block;
    pointer-events: auto;
}

.teklif-form-container {
    position: fixed;
    top: 110px;
    right: 80px;
    background: #ffffff;
    width: 360px;
    height: auto;
    border-radius: 0;
    border: none;
    animation: slideInFromRight 0.4s ease-out;
    overflow: visible;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.close-form {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.form-header {
    background: #F37021;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

#teklifForm {
    padding: 25px 30px;
}

#teklifForm input,
#teklifForm textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 12px;
    border: none;
    background: #EAEAEA;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #4A4A4A;
    border-radius: 5px;
}

#teklifForm input::placeholder,
#teklifForm textarea::placeholder {
    color: #999;
}

#teklifForm textarea {
    resize: none;
}

.form-note {
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.dosya-yukle-btn {
    width: 100%;
    padding: 10px 20px;
    background: #F37021;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    transition: background 0.3s;
}

.dosya-yukle-btn:hover {
    background: #d95f1a;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    background: #f5f5f5;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background: #F37021;
    border-color: #F37021;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    color: #ffffff;
    font-size: 14px;
    left: 3px;
    top: -2px;
}

.checkbox-text {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

.checkbox-text a {
    color: #F37021;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #F37021;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #d95f1a;
}

.form-logo {
    text-align: center;
}

.form-logo img {
    height: 35px;
}

.kvkk-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.kvkk-modal.active {
    display: flex;
}

.kvkk-modal-content {
    position: relative;
    background: #ffffff;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    border: 3px solid #F37021;
    animation: slideIn 0.3s ease-out;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #F37021;
    border: none;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.kvkk-modal-content h2 {
    color: #F37021;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.kvkk-content {
    margin-bottom: 30px;
}

.kvkk-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.kvkk-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.kvkk-content ul li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.kvkk-accept-btn {
    width: 100%;
    padding: 15px;
    background: #F37021;
    color: #ffffff;
    border: none;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.kvkk-accept-btn:hover {
    background: #d95f1a;
}

.hakkimizda-section {
    position: relative;
    width: 100%;
    background: url('../img/hakkindaalt.png') center top / cover no-repeat;
    padding: 100px 0 0 0;
}

.hakkimizda-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px 80px 60px;
}

.hakkimizda-header {
    text-align: left;
    margin-bottom: 60px;
}

.hakkimizda-header h3 {
    font-size: 24px;
    font-weight: 500;
    color: #531593;
    margin-bottom: 10px;
}

.hakkimizda-header h4 {
    font-size: 24px;
    font-weight: 500;
    color: #531593;
    margin-bottom: 20px;
}

.hakkimizda-header h2 {
    font-size: 36px;
    font-weight: 500;
    color: #F37021;
    line-height: 1.3;

}

.hakkimizda-image {
    text-align: center;
    margin-bottom: 60px;
}

.hakkimizda-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.hakkimizda-image.hover-tilt {
    perspective: 1000px;
}

.hakkimizda-image.hover-tilt:hover img {
    transform: rotateY(8deg) rotateX(4deg) scale(1.03);
}

.hakkimizda-text {
    text-align: left;
    max-width: 1000px;
    margin: 0;
}

.hakkimizda-text h3 {
    font-size: 36px;
    font-weight: 500;
    color: #F37021;
    margin-bottom: 30px;

}

.hakkimizda-text p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
}

.orange-line {
    width: 100%;
    height: 50px;
    background: #F37021;
    margin-top: 0;
}

.mjf-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 0;
    margin-bottom: -80px;
}

.mjf-hero-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.mjf-hero-container {
    display: flex;
    align-items: flex-start;
}

.mjf-hero-left {
    width: 65%;
}

.mjf-hero-left img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.mjf-hero-left.hover-tilt-machine {
    perspective: 1000px;
}

.mjf-hero-left.hover-tilt-machine:hover img {
    transform: rotateY(-5deg) rotateX(3deg) scale(1.02);
}

.mjf-hero-right {
    width: 35%;
    background: #ffffff;
    padding: 60px 60px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.mjf-star {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

.mjf-hero-right h2 {
    font-size: 36px;
    font-weight: 700;
    color: #531593;
    line-height: 1.4;
    margin-bottom: 0;
    width: 100%;
}

.hp-logo-bottom {
    width: 50px;
    height: auto;
    margin-top: 10px;
    align-self: flex-end;
    margin-right: clamp(20px, 55%, 300px);
}

.mjf-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 60px 0 60px;
}

.mjf-description {
    margin-bottom: 60px;
}

.mjf-description h3 {
    font-size: 36px;
    font-weight: 500;
    color: #F37021;
    margin-bottom: 20px;

}

.mjf-description p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
}

.mjf-clips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.clip-item {
    overflow: hidden;
    perspective: 1000px;
}

.clip-item img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.clip-item:hover img {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

.mjf-how {
    margin-bottom: 180px;
}

.mjf-how h3 {
    font-size: 36px;
    font-weight: 500;
    color: #F37021;
    margin-bottom: 30px;

}

.mjf-how ul {
    list-style: none;
    padding: 0;
}

.mjf-how ul li {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.mjf-how ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 700;
}

.mjf-how ul ul {
    margin-top: 10px;
    margin-left: 20px;
}

.mjf-how ul ul li {
    font-size: 16px;
    padding-left: 20px;
}

.video-section {
    width: 100%;
    background: #531593;
    padding: 80px 0 120px 0;
}

.video-header {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.video-star {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    display: block;
}

.video-header p {
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;

}

.neden-mjf-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0 0 0;
}

.neden-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.neden-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    margin-bottom: 30px;
    overflow: hidden;
}

.video-placeholder img:first-child {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-placeholder:hover img:first-child {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.neden-left h3,
.neden-right h3 {
    font-size: 36px;
    font-weight: 500;
    color: #F37021;
    margin-bottom: 30px;

}

.intro-text {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 30px;
}

.feature-item {
    margin-bottom: 25px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}

.usage-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.usage-list li {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 2.2;
    padding-left: 0;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    background: #F37021;
    border: none;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#videoFrame {
    width: 100%;
    height: 100%;
}

.avantajlar-section-ust {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
}

.avantajlar-section-alt {
    width: 100%;
    background: #FBFAFA;
    padding: 80px 0;
}

.avantajlar-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.avantaj-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
    align-items: center;
}

.avantaj-row-first {
    margin-top: -60px;
}

.avantaj-row.reverse {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    margin-bottom: 40px;
}

.avantaj-row.reverse .avantaj-left h3,
.avantaj-row.reverse .avantaj-right h3 {
    margin-top: 0;
}

.avantaj-star {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 20px;
}

.avantaj-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #531593;
    line-height: 1.5;
}

.avantaj-left h3,
.avantaj-right h3 {
    font-size: 36px;
    font-weight: 500;
    color: #F37021;
    margin-bottom: 20px;
    line-height: 1.4;

}

.avantaj-left h4,
.avantaj-right h4 {
    font-size: 36px;
    font-weight: 500;
    color: #F37021;
    margin-top: 30px;
    margin-bottom: 15px;

}

.avantaj-left p,
.avantaj-right p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
}

.avantaj-left ul,
.avantaj-right ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.avantaj-left ul li,
.avantaj-right ul li {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.avantaj-left ul li::before,
.avantaj-right ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 700;
}

.avantaj-left img:not(.avantaj-star),
.avantaj-right img {
    width: 90%;
    height: auto;
    display: block;
    margin-top: 20px;
}

.avantaj-left img[src*="kalipsiz.png"],
.avantaj-right img[src*="kalipsiz.png"] {
    width: 75%;
    height: auto;
    margin-top: 40px;
}

.teslim-section {
    position: relative;
    width: 100%;
    background: #ffffff;
}

.teslim-purple-bar {
    width: 100%;
    height: 328px;
    background: #531593;
}

.teslim-content {
    max-width: 1600px;
    margin: -234px auto 0;
    padding: 0 60px;
    position: relative;
    z-index: 10;
}

.teslim-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.teslim-card {
    background: #ffffff;
}

.teslim-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.teslim-card h3 {
    font-size: 36px;
    font-weight: 500;
    color: #F37021;
    margin-bottom: 20px;
    line-height: 1.3;

}

.teslim-card h3 span {
    font-size: 24px;
    font-weight: 400;
    color: #F37021;
}

.teslim-card ol,
.teslim-card ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.teslim-card ol li,
.teslim-card ul li {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 8px;
}

.teslim-card p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 15px;
}

.comparison-section {
    width: 100%;
    background: #F37021;
    padding: 80px 0;
}

.comparison-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.comparison-left h2,
.comparison-right h2 {
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.4;

}

.comparison-item {
    margin-bottom: 30px;
}

.comparison-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.comparison-item p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 5px;
}

.comparison-right p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 20px;
}

.comparison-right ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.comparison-right ul li {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.comparison-right ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 700;
}

.comparison-right .highlight {
    font-weight: 500;
    margin-top: 20px;
}

.blog-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
}

.blog-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-star {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.blog-header h2 {
    font-size: 36px;
    font-weight: 500;
    color: #F37021;
    margin-bottom: 30px;

}

.blog-slider-container {
    position: relative;
    padding: 0 60px;
    margin-bottom: 50px;
}

.blog-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    overflow: hidden;
}

.blog-card {
    background: #ffffff;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card a.card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 0 20px 20px;
}

.blog-date {
    font-size: 14px;
    font-weight: 500;
    color: #531593;
    margin-bottom: 15px;
}

.blog-card-content h3 {
    font-size: 22px;
    font-weight: 500;
    color: #F37021;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    font-size: 16px;
    font-weight: 600;
    color: #F37021;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #531593;
}

.blog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #999999;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 10;
}

.blog-nav:hover {
    background: #F37021;
    transform: translateY(-50%) scale(1.1);
}

.blog-prev {
    left: -70px;
}

.blog-next {
    right: -70px;
}

.blog-view-all {
    text-align: center;
}

.blog-view-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #F37021;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.blog-view-all-btn:hover {
    background: #d95f1a;
    transform: translateY(-3px);
}

.blog-list-hero {
    width: 100%;
    background: linear-gradient(135deg, #531593 0%, #7a2bb8 100%);
    padding: 150px 0 80px 0;
}

.blog-list-hero-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: left;
}

.blog-hero-star {
    width: 80px;
    height: 80px;
    margin: 0 0 30px 0;
    display: block;
}

.blog-list-hero h1 {
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;

}

.blog-list-hero p {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
}

.blog-list-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
}

.blog-list-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-detail-hero {
    width: 100%;
    background: #531593;
    padding: 150px 0 80px 0;
}

.blog-detail-hero-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.blog-detail-breadcrumb {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.blog-detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-detail-breadcrumb a:hover {
    color: #F37021;
}

.blog-detail-hero h1 {
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;

}

.blog-detail-meta {
    display: flex;
    gap: 30px;
}

.blog-detail-date,
.blog-detail-author {
    font-size: 16px;
    font-weight: 400;
    color: #531593;
}

.blog-detail-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
}

.blog-detail-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-text h2 {
    font-size: 36px;
    font-weight: 500;
    color: #F37021;
    margin-bottom: 25px;
    margin-top: 40px;

}

.blog-detail-text h2:first-child {
    margin-top: 0;
}

.blog-detail-text h3 {
    font-size: 28px;
    font-weight: 500;
    color: #F37021;
    margin-bottom: 20px;
    margin-top: 35px;
}

.blog-detail-text p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-detail-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.blog-detail-text ul li {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.blog-detail-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #F37021;
    font-weight: 700;
    font-size: 20px;
}

.blog-sidebar-widget {
    background: #f5f5f5;
    padding: 30px;
    margin-bottom: 30px;
}

/* İletişim widget'ını gizle, sadece Son Yazılar görünsün */
.blog-sidebar-widget:last-child {
    display: none;
}

.blog-sidebar-widget h3 {
    font-size: 24px;
    font-weight: 500;
    color: #531593;
    margin-bottom: 25px;
}

.blog-sidebar-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.blog-sidebar-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-sidebar-post-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-sidebar-post-content h4 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-sidebar-post-content h4 a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-sidebar-post-content h4 a:hover {
    color: #F37021;
}

.blog-sidebar-date {
    font-size: 12px;
    font-weight: 400;
    color: #531593;
}

.blog-sidebar-widget p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-sidebar-cta {
    display: inline-block;
    padding: 12px 30px;
    background: #F37021;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.blog-sidebar-cta:hover {
    background: #531593;
    transform: translateY(-3px);
}

.footer-section {
    width: 100%;
    background: url('../img/footerustzemin.png') center center / cover no-repeat;
    padding: 80px 0;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-col h3 {
    font-size: 36px;
    font-weight: 500;
    color: #F37021;
    margin-bottom: 20px;
    line-height: 1.3;

}

.footer-col h4 {
    font-size: 24px;
    font-weight: 500;
    color: #F37021;
    margin-top: 30px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.footer-col ul li {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.footer-col ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 700;
}

.footer-machine {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.main-footer {
    width: 100%;
    background: #531593;
}

.footer-bottom {
    padding: 40px 0;
}

.footer-bottom-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.footer-col-left img {
    width: 220px;
    height: auto;
}

.footer-col-middle h4 {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-col-middle p {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
}

.footer-col-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-whatsapp img {
    width: 30px;
    height: 30px;
}

.footer-whatsapp-label {
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
}

.footer-whatsapp-number {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.footer-email {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social a img {
    width: 20px;
    height: 20px;
}

.footer-username {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-left: 5px;
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: #F37021;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s;
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    background: #d95f1a;
    transform: translateY(-5px);
}

.scroll-top img {
    width: 24px;
    height: 24px;
}

.footer-copyright {
    background: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.footer-copyright p {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
}

/* Mobil Responsive - 768px ve altı */
@media (max-width: 768px) {
    /* Genel düzeltmeler */
    .container,
    header .container,
    .hero-content,
    .hakkimizda-content,
    .mjf-content,
    .video-header,
    .neden-content,
    .avantajlar-content,
    .teslim-content,
    .comparison-content,
    .blog-content,
    .footer-content,
    .footer-bottom-content,
    .blog-list-content,
    .blog-detail-content {
        padding: 0 20px;
    }

    /* Hero bölümü */
    .hero-content {
        align-items: flex-end;
        padding-bottom: 100px;
    }

    .hero-text {
        margin-top: 0;
    }

    .hero-text h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 14px;
        line-height: 1.4;
    }

    .slide-controls {
        left: 20px;
        bottom: 40px;
    }

    /* Başlıklar */
    h2, h3, h4,
    .hakkimizda-header h2,
    .hakkimizda-text h3,
    .mjf-description h3,
    .mjf-how h3,
    .video-header p,
    .neden-left h3,
    .neden-right h3,
    .avantaj-left h2,
    .avantaj-left h3,
    .avantaj-right h3,
    .avantaj-left h4,
    .avantaj-right h4,
    .teslim-card h3,
    .comparison-left h2,
    .comparison-right h2,
    .blog-header h2,
    .footer-col h3,
    .blog-list-hero h1,
    .blog-detail-hero h1,
    .blog-detail-text h2 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    /* PA12'nin Temel Özellikleri gibi uzun başlıklar */
    .avantajlar-section-alt h3 {
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }

    /* Grid düzenlemeleri */
    .mjf-clips,
    .teslim-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .neden-grid,
    .avantaj-row,
    .avantaj-row.reverse,
    .comparison-content,
    .blog-slider,
    .blog-list-grid,
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-detail-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* MJF Hero düzeni */
    .mjf-hero-container {
        flex-direction: column;
    }

    .mjf-hero-left,
    .mjf-hero-right {
        width: 100%;
    }

    .mjf-hero-right {
        padding: 30px 20px;
    }

    /* Avantajlar bölümü */
    .avantaj-row-first {
        margin-top: 0;
    }

    .avantaj-left img:not(.avantaj-star),
    .avantaj-right img {
        width: 100%;
        margin-top: 20px;
    }

    /* Teslim bölümü */
    .teslim-purple-bar {
        height: 200px;
    }

    .teslim-content {
        margin-top: -150px;
    }

    /* Blog navigasyon */
    .blog-slider-container {
        padding: 0;
    }

    .blog-prev,
    .blog-next {
        display: none;
    }

    /* Teklif tab */
    .teklif-tab {
        right: -55px;
        padding: 10px 25px;
        font-size: 14px;
    }

    .teklif-form-container {
        right: 20px;
        width: calc(100% - 40px);
        max-width: 360px;
    }

    /* Footer düzenlemeleri */
    .footer-col-left img {
        width: 180px;
    }

    .footer-machine {
        max-width: 80%;
        margin: 20px auto;
        display: block;
    }

    /* Scroll top button */
    .scroll-top {
        right: 15px;
        bottom: 80px;
        width: 40px;
        height: 40px;
    }

    /* Padding düzenlemeleri */
    .hakkimizda-section,
    .video-section,
    .neden-mjf-section,
    .avantajlar-section-ust,
    .avantajlar-section-alt,
    .comparison-section,
    .blog-section,
    .footer-section,
    .blog-list-section,
    .blog-detail-section {
        padding: 40px 0;
    }

    .mjf-how {
        margin-bottom: 60px;
    }

    /* Font boyutu düzenlemeleri */
    .teslim-card h3 span {
        font-size: 18px;
    }

    .blog-card-content h3 {
        font-size: 18px;
    }

    /* Video modal */
    .video-modal-content {
        width: 95%;
    }

    /* Fixed contact buttons - mobilde de göster */
    .fixed-contact-buttons {
        bottom: 15px !important;
    }

    .fixed-contact-buttons.left {
        left: 15px !important;
    }

    .fixed-contact-buttons.right {
        right: 15px !important;
    }

    .contact-btn {
        width: 50px !important;
        height: 50px !important;
    }

    .contact-btn svg {
        width: 24px !important;
        height: 24px !important;
    }
}

/* Fixed Contact Buttons */
.fixed-contact-buttons {
    position: fixed;
    z-index: 99998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn {
    background: #25D366;
    color: #ffffff;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.phone-btn {
    background: #F37021;
    color: #ffffff;
}

.phone-btn:hover {
    background: #d95f1a;
}

.contact-btn svg {
    width: 30px;
    height: 30px;
}
