/* GENEL STILLER */
:root {
    --black: #0a0a0a;
    --dark-black: #050505;
    --light-black: #1a1a1a;
    --orange: #FF6F00;
    --light-orange: #FF9500;
    --dark-orange: #E65100;
    --text-white: #f5f5f5;
    --text-gray: #aaaaaa;
    --gradient-orange: linear-gradient(135deg, var(--orange), var(--light-orange));
    --gradient-black: linear-gradient(135deg, var(--black), var(--light-black));
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

/* Global text overflow handling */
h1, h2, h3, h4, h5, h6, p, span, a, li {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background: var(--orange);
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.responsive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(50px);
    transition: all 1s;
}

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

/* ÖZEL CURSOR */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease;
    opacity: 0.5;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 5px;
    height: 5px;
    background-color: var(--orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-grow {
    transform: translate(-50%, -50%) scale(3);
    border-width: 1px;
    opacity: 0.3;
    background-color: rgba(255, 111, 0, 0.15);
}

/* LOADER - Enhanced Modern Design */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease-in-out;
    backdrop-filter: blur(10px);
}

.loader-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 111, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 149, 0, 0.1) 0%, transparent 50%);
    animation: loaderBgPulse 3s ease-in-out infinite;
}

@keyframes loaderBgPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.loader {
    position: relative;
    width: 250px;
    height: 250px;
    animation: loaderRotate 20s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes loaderRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--orange);
    border-left-color: var(--orange);
    animation: loaderSpin 2s linear infinite reverse;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    opacity: 0.5;
}

@keyframes loaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 111, 0, 0.5));
}

.loader svg circle {
    fill: none;
    stroke: url(#loader-gradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    animation: loaderStroke 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes loaderStroke {
    0% {
        stroke-dashoffset: 440;
        stroke-width: 3;
    }
    50% {
        stroke-dashoffset: 0;
        stroke-width: 5;
    }
    100% {
        stroke-dashoffset: -440;
        stroke-width: 3;
    }
}

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    width: 140px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--orange), var(--light-orange));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: loaderLogoGlow 2s ease-in-out infinite;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes loaderLogoGlow {
    0%, 100% { 
        filter: brightness(1);
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 111, 0, 0.8));
        transform: scale(1.05);
    }
}



.loader-tip {
    font-size: 0.65rem;
    color: var(--orange);
    opacity: 0;
    animation: fadeIn 1s ease 3s forwards;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    text-align: center;
    width: 200px;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.6; }
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: var(--black);
    /* Scroll efekti kaldırıldı - header her zaman sabit */
    border-bottom: 1px solid rgba(255, 111, 0, 0.2);
    height: var(--header-height);
}

/* header.scrolled artık kullanılmıyor - header her zaman sabit */

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
    position: relative;
    z-index: 2;
}

.logo span {
    color: var(--orange);
}

.logo:hover span {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu li {
    margin: 0 15px;
    position: relative;
}

.mobile-cta {
    display: none;
}

.nav-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height:.2rem;
    bottom: 0;
    left: 50%;
    background: var(--gradient-orange);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
    border-radius: 10px;
}

.nav-menu a:hover {
    color: var(--orange);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Header Actions */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

/* Mobile Language Switcher */
.mobile-language-switcher {
    display: none;
    position: relative;
}

.mobile-lang-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 111, 0, 0.08);
    border: 1.5px solid rgba(255, 111, 0, 0.25);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-lang-btn:active {
    transform: scale(0.95);
}

.mobile-lang-btn.active {
    background: rgba(255, 111, 0, 0.15);
    border-color: var(--orange);
}

.mobile-lang-flag {
    font-size: 1.3rem;
    line-height: 1;
    display: flex;
}

.mobile-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 111, 0, 0.2);
    border-radius: 12px;
    padding: 6px;
    min-width: 90px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.9);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 1005;
}

.mobile-language-switcher.active .mobile-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.mobile-lang-option:hover,
.mobile-lang-option:active {
    background: rgba(255, 111, 0, 0.15);
    color: var(--text-white);
}

.mobile-lang-option.active {
    background: rgba(255, 111, 0, 0.25);
    color: var(--orange);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--orange);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--orange);
}

/* Header Buttons Container */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    z-index: 1001;
}

.current-flag {
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.15) 0%, rgba(255, 111, 0, 0.05) 100%);
    border: 1.5px solid rgba(255, 111, 0, 0.4);
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.current-flag:after {
    content: '▼';
    font-size: 0.65rem;
    margin-left: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--orange);
    opacity: 0.8;
}

.language-switcher.active .current-flag {
    border-color: var(--orange);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.language-switcher.active .current-flag:after {
    transform: rotate(180deg);
}

.current-flag:hover {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.25) 0%, rgba(255, 111, 0, 0.1) 100%);
    border-color: rgba(255, 111, 0, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.15);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
    border: 1.5px solid rgba(255, 111, 0, 0.2);
    border-radius: 16px;
    padding: 10px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(255, 111, 0, 0.1);
    pointer-events: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1002;
}

/* Hover devre dışı - sadece active durumda açılacak */
/* .language-switcher:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
} */

.language-switcher.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-weight: 400;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.language-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 111, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.language-option:hover {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.2) 0%, rgba(255, 111, 0, 0.1) 100%);
    color: var(--orange);
    transform: translateX(3px);
    padding-left: 20px;
}

.language-option:hover::before {
    left: 100%;
}

.language-option.active {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.35) 0%, rgba(255, 111, 0, 0.2) 100%);
    color: var(--orange);
    font-weight: 500;
    box-shadow: inset 0 0 15px rgba(255, 111, 0, 0.1);
}

.language-option.active::after {
    content: '✓';
    position: absolute;
    right: 16px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* RTL Support for Arabic */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .container {
    direction: rtl;
}

body.rtl .header-container {
    flex-direction: row-reverse;
}

body.rtl .nav-menu {
    flex-direction: row-reverse;
}

body.rtl .service-link i,
body.rtl .footer-link i {
    margin-right: 0;
    margin-left: 8px;
}

body.rtl .language-dropdown {
    right: auto;
    left: 0;
}

.cta-button, .catalog-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    background: var(--gradient-orange);
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

.catalog-button {
    background: transparent;
    border: 2px solid var(--orange);
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.catalog-button:hover {
    background: var(--gradient-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.5);
}

/* HERO SECTION - DÜZELTME */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-height);
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.7), rgba(10, 10, 10, 0.8)), url('img/proje.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

/* Mobil cihazlar için arka plan düzeltmesi */
@media screen and (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll !important;
        background: linear-gradient(to bottom, rgba(5, 5, 5, 0.5), rgba(10, 10, 10, 0.6)), url('img/proje.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
}

/* iOS Safari için özel düzeltme */
@supports (-webkit-touch-callout: none) {
    .hero-bg {
        background-attachment: scroll !important;
        position: fixed;
        width: 100vw;
        height: 100vh;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background-color: var(--orange);
    border-radius: 50%;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    max-width: 1000px;
    z-index: 2;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.2s forwards;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.4s forwards;
}

.hero-title span {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 10px;
    left: 0;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    animation: loadingBar 2s ease-in-out 1s forwards;
}

@keyframes loadingBar {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.8s forwards;
}

.hero-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    background: var(--gradient-orange);
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.3);
}

.hero-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.hero-button:hover:before {
    width: 100%;
}

.hero-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 111, 0, 0.5);
}

.hero-button.outline {
    background: transparent;
    border: 2px solid var(--orange);
    box-shadow: none;
}

.hero-button.outline:hover {
    background: var(--orange);
    box-shadow: 0 15px 35px rgba(255, 111, 0, 0.5);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounceAnimation 2s infinite;
    opacity: 0;
    animation: fadeInUp 0.5s ease 1s forwards, bounceAnimation 2s ease-in-out 1.5s infinite;
}

.scroll-down i {
    color: var(--orange);
    font-size: 2rem;
}

@keyframes bounceAnimation {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HIZMETLER SECTION */
.services {
    padding: 100px 0;
    position: relative;
    background-color: var(--dark-black);
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/proje.png') no-repeat center;
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--orange);
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.service-item {
    background-color: rgba(15, 15, 15, 0.5);
    border: 1px solid rgba(255, 111, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 111, 0, 0.3);
}

.service-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.5s ease;
}

.service-item:hover .service-icon {
    transform: translateY(-10px) scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--orange);
    transition: all 0.5s ease;
}

.service-item:hover .service-title::after {
    width: 60px;
}

.service-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.service-item:hover .service-description {
    color: var(--text-white);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--orange);
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    white-space: nowrap;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--light-orange);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* HAKKIMIZDA */
.about {
    padding: 60px 0;
    position: relative;
    background-color: var(--dark-black);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.1), transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
    max-width: 100%;
    overflow: visible;
    padding: 0 20px;
    min-height: auto;
}

.about-content {
    position: relative;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 3px;
    animation: expandWidth 1s ease-out 0.5s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes expandWidth {
    to { transform: scaleX(1); }
}

.about-title span {
    color: var(--orange);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.about-text {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    transition: color 0.3s ease;
}

.about-content:hover .about-text {
    color: var(--text-white);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.7), rgba(255, 111, 0, 0.05));
    border: 1px solid rgba(255, 111, 0, 0.2);
    border-radius: 15px;
    padding: 25px 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.15), transparent 70%);
    transition: all 0.5s ease;
    opacity: 0;
}

.stat-item:hover::before {
    top: -150%;
    left: -150%;
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 111, 0, 0.2);
    border-color: var(--orange);
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(255, 111, 0, 0.1));
}

.stat-number {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 111, 0, 0.5);
}

.stat-text {
    color: var(--text-gray);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: color 0.3s ease;
}

.stat-item:hover .stat-text {
    color: var(--text-white);
}

.stat-text-only {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-text-only {
    color: var(--orange);
    text-shadow: 0 0 20px rgba(255, 111, 0, 0.5);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    height: auto;
    aspect-ratio: 384/216;
    width: 100%;
    max-width: 100%;
    animation: fadeInRight 0.8s ease-out;
    transition: all 0.4s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(255, 111, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    max-width: 100%;
    display: block;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.3), rgba(0, 0, 0, 0));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.about-image:hover::before {
    opacity: 0.7;
}

/* CTA */
.cta {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('img/proje.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

/* Mobil cihazlarda background-attachment sorununu çöz */
@supports (-webkit-overflow-scrolling: touch) {
    .cta {
        background-attachment: scroll;
    }
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.3), rgba(0, 0, 0, 0));
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.cta-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* CONTACT SECTION */
.contact {
    padding: 100px 0;
    position: relative;
    background-color: var(--dark-black);
}

.contact-container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.contact-info-full {
    max-width: 800px;
    text-align: center;
    width: 100%;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 3px;
}

.contact-title span {
    color: var(--orange);
}

.contact-text {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    min-width: 250px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--orange);
    margin-right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 111, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    background-color: var(--orange);
    color: var(--text-white);
}

.contact-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-white);
}

.contact-value {
    color: var(--text-gray);
}

.contact-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--orange);
    transform: translateX(3px);
    display: inline-block;
}

.contact-intro-text {
    text-align: center;
    margin-bottom: 40px;
}

.contact-main-text {
    font-size: 1.2rem;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-sub-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 111, 0, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 111, 0, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 111, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

.benefit-item i {
    color: var(--orange);
    font-size: 1.2rem;
}

.benefit-item span {
    color: var(--text-white);
    font-weight: 500;
}

.contact-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 60px 0 40px 0;
    flex-wrap: wrap;
}

.contact-cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 250px;
    justify-content: center;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.email-btn {
    background: var(--gradient-orange);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

.email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.5);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(15, 15, 15, 0.5);
    border: 1px solid rgba(255, 111, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--orange);
    color: var(--text-white);
    transform: translateY(-5px);
}

/* WHATSAPP MODAL STYLES - MINIMALIST */
.whatsapp-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.2s ease;
}

.whatsapp-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-modal-content {
    background: #0a0a0a;
    border: 1px solid rgba(255, 111, 0, 0.2);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 111, 0, 0.1);
}

.whatsapp-modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-modal-title i {
    font-size: 1.5rem;
    color: var(--orange);
}

.whatsapp-modal-title h2 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.whatsapp-close {
    color: var(--text-gray);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.whatsapp-close:hover {
    color: var(--orange);
    transform: rotate(90deg);
}

.whatsapp-modal-body {
    padding: 25px;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.whatsapp-modal-body::-webkit-scrollbar {
    width: 4px;
}

.whatsapp-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 111, 0, 0.05);
}

.whatsapp-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 111, 0, 0.3);
    border-radius: 2px;
}

.service-info-display {
    background: rgba(255, 111, 0, 0.05);
    border-left: 3px solid var(--orange);
    padding: 12px 16px;
    margin-bottom: 25px;
}

.selected-service-label {
    color: var(--text-gray);
    font-size: 0.75rem;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selected-service-name {
    color: var(--orange);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.whatsapp-form-group {
    position: relative;
}

.whatsapp-form-group.full-width {
    grid-column: 1 / -1;
}

.whatsapp-input {
    width: 100%;
    padding: 14px 16px;
    background: #000000;
    border: 1px solid rgba(255, 111, 0, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.whatsapp-input:hover {
    border-color: rgba(255, 111, 0, 0.4);
}

.whatsapp-input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(255, 111, 0, 0.1);
}

/* Chrome autofill background fix */
.whatsapp-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #000000 inset !important;
    -webkit-text-fill-color: var(--text-white) !important;
}

/* Number input arrows styling */
.whatsapp-input[type="number"]::-webkit-inner-spin-button,
.whatsapp-input[type="number"]::-webkit-outer-spin-button {
    opacity: 0.5;
}

.whatsapp-label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-gray);
    transition: all 0.2s ease;
    pointer-events: none;
    background: #000000;
    padding: 0 4px;
    font-size: 0.95rem;
}

.whatsapp-textarea ~ .whatsapp-label {
    top: 16px;
    transform: translateY(0);
}

.whatsapp-input:focus ~ .whatsapp-label,
.whatsapp-input:not(:placeholder-shown) ~ .whatsapp-label {
    top: -10px;
    transform: translateY(0);
    font-size: 0.8rem;
    color: var(--orange);
    background: #0a0a0a;
}

.whatsapp-textarea:focus ~ .whatsapp-label,
.whatsapp-textarea:not(:placeholder-shown) ~ .whatsapp-label {
    top: -10px;
    transform: translateY(0);
    font-size: 0.8rem;
    color: var(--orange);
    background: #0a0a0a;
}

.whatsapp-textarea {
    resize: vertical;
    min-height: 100px;
}

.whatsapp-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.whatsapp-cancel-btn,
.whatsapp-submit-btn {
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-cancel-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    color: var(--text-gray);
    flex: 0.35;
    border: 1px solid rgba(255, 111, 0, 0.2);
}

.whatsapp-cancel-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 111, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-cancel-btn:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-cancel-btn:hover {
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.2);
    border-color: var(--orange);
}

.whatsapp-submit-btn {
    background: var(--gradient-orange);
    color: white;
    flex: 0.65;
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.3);
    position: relative;
}

.whatsapp-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-submit-btn:hover::before {
    left: 100%;
}

.whatsapp-submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 111, 0, 0.4);
}

.whatsapp-submit-btn i {
    font-size: 1.2rem;
}

.whatsapp-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.08), rgba(255, 149, 0, 0.04));
    border-radius: 15px;
    border: 1px solid rgba(255, 111, 0, 0.2);
    position: relative;
}

.whatsapp-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-orange);
    border-radius: 15px 0 0 15px;
}

.whatsapp-info i {
    color: var(--orange);
    font-size: 1.3rem;
    margin-top: 2px;
}

.whatsapp-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Success Toast */
.whatsapp-success-toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--gradient-orange);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    box-shadow: 
        0 10px 30px rgba(255, 111, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    z-index: 10002;
    animation: toastSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.whatsapp-success-toast i {
    font-size: 1.3rem;
}

/* FOOTER */
.footer {
    padding: 80px 0 30px;
    position: relative;
    background-color: var(--black);
    border-top: 1px solid rgba(255, 111, 0, 0.1);
}

/* PDF CATALOG MODAL */
.catalog-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.catalog-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-modal-content {
    background-color: var(--dark-black);
    border: 1px solid rgba(255, 111, 0, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    max-height: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.catalog-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 111, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1), rgba(0, 0, 0, 0));
}

.catalog-modal-header h2 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 0;
}

.catalog-modal-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.catalog-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-orange);
    color: var(--text-white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.catalog-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.5);
}

.catalog-close {
    color: var(--text-gray);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.catalog-close:hover {
    color: var(--orange);
    background-color: rgba(255, 111, 0, 0.1);
}

.catalog-modal-body {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 0 0 15px 15px;
}

#catalogFrame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 15px 15px;
}

.catalog-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: none;
}

.catalog-fallback.show {
    display: block;
}

.catalog-fallback i {
    font-size: 5rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.catalog-fallback h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.catalog-fallback p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Mobile Catalog Button */
.mobile-catalog-button {
    display: inline-block !important;
    padding: 12px 30px !important;
    background: transparent !important;
    border: 2px solid var(--orange) !important;
    color: var(--orange) !important;
    border-radius: 50px !important;
    text-align: center !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin-top: 10px !important;
}

.mobile-catalog-button:hover {
    background: var(--gradient-orange) !important;
    color: var(--text-white) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.5) !important;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-logo span {
    color: var(--orange);
}

.footer-about {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--text-white);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 3px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: var(--text-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-link i {
    margin-right: 10px;
    color: var(--orange);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--orange);
    transform: translateX(10px);
}

.footer-link:hover i {
    transform: scale(1.2);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    color: var(--text-gray);
}

.footer-contact-icon {
    margin-right: 15px;
    color: var(--orange);
    font-size: 1.2rem;
}

.footer-newsletter {
    margin-top: 20px;
}

.newsletter-form {
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 15px;
    padding-right: 60px;
    background-color: rgba(15, 15, 15, 0.5);
    border: 1px solid rgba(255, 111, 0, 0.1);
    border-radius: 50px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--orange);
}

.newsletter-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-orange);
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 111, 0, 0.1);
    text-align: center;
    color: var(--text-gray);
    position: relative;
    z-index: 2;
}


.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.5);
}

/* Floating WhatsApp button removed */

/* RESPONSIVE */
@media screen and (max-width: 1200px) {
    .container {
        width: 95%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
        overflow: visible;
    }
    
    .about-image {
        order: -1;
        aspect-ratio: 384/216;
        height: auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media screen and (max-width: 992px) {
    /* Navigation */
    .mobile-header-actions {
        display: flex !important;
    }
    
    .mobile-language-switcher {
        display: block !important;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Desktop dil menüsünü gizle */
    .header-buttons {
        display: none !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--dark-black);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        transition: all 0.5s ease;
        z-index: 8;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-menu li:not(.mobile-cta) {
        margin: 15px 0;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .nav-menu a {
        width: 100%;
        display: block;
        font-size: 1.1rem;
        padding: 12px 0;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .header-buttons {
        display: flex;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .header-buttons .catalog-button {
        display: none;
    }
    
    .language-switcher {
        position: fixed;
        top: 15px;
        right: 60px;
        z-index: 1002;
    }
    
    .language-switcher .current-flag {
        font-size: 0.85rem;
        padding: 8px 12px;
        background-color: rgba(255, 111, 0, 0.15);
        border: 2px solid rgba(255, 111, 0, 0.4);
    }
    
    .language-dropdown {
        position: fixed;
        top: 55px;
        right: 10px;
        left: auto;
        min-width: 180px;
        max-height: 300px;
        overflow-y: auto;
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .language-option {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    /* Mobilde dokunma ile açılma */
    @media (hover: none) and (pointer: coarse) {
        .language-switcher:hover .language-dropdown {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        
        .language-switcher.active .language-dropdown {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
    }
    
    
    /* Mobil menüde teklif al butonu */
    .mobile-cta {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 111, 0, 0.2);
    }
    
    .mobile-cta:first-of-type {
        border-top: 1px solid rgba(255, 111, 0, 0.2);
    }
    
    .mobile-cta:last-of-type {
        border-top: none;
        margin-top: 10px;
        padding-top: 0;
    }
    
    .mobile-cta-button {
        display: inline-block !important;
        padding: 12px 30px !important;
        background: var(--gradient-orange) !important;
        color: var(--text-white) !important;
        border-radius: 50px !important;
        text-align: center !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3) !important;
        width: 100% !important;
    }
    
    .mobile-cta-button:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 10px 25px rgba(255, 111, 0, 0.5) !important;
    }
    
    /* PDF Modal Responsive */
    .catalog-modal-content {
        width: 95%;
        height: 95%;
        margin: 20px;
    }
    
    .catalog-modal-header {
        padding: 15px 20px;
    }
    
    .catalog-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .catalog-download-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero {
        padding-top: calc(var(--header-height) - 20px);
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    /* Sections */
    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
    }
    
    /* Contact */
    .contact-details {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-intro-text {
        padding: 0 20px;
    }
    
    .contact-main-text {
        font-size: 1rem;
    }
    
    .contact-sub-text {
        font-size: 0.9rem;
    }
    
    .contact-benefits {
        flex-direction: column;
        align-items: stretch;
    }
    
    .benefit-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-cta-btn {
        width: 100%;
        min-width: auto;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-social,
    .contact-social {
        justify-content: center;
    }
}

/* WhatsApp Modal Responsive */
@media screen and (max-width: 768px) {
    .whatsapp-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .whatsapp-modal-header {
        padding: 20px;
    }
    
    .whatsapp-modal-title h2 {
        font-size: 1.3rem;
    }
    
    .whatsapp-modal-body {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .whatsapp-actions {
        flex-direction: column;
    }
    
    .whatsapp-cancel-btn,
    .whatsapp-submit-btn {
        flex: 1;
        width: 100%;
    }
    
    .whatsapp-success-toast {
        right: 15px;
        left: 15px;
        width: auto;
    }
}

@media screen and (max-width: 768px) {
    /* General */
    body {
        font-size: 14px;
    }
    
    .container {
        width: 100%;
        padding: 0 20px;
    }
    
    /* Sections Padding */
    .services,
    .about,
    .portfolio,
    .testimonials,
    .contact {
        padding: 60px 0;
    }
    
    /* Typography */
    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Hero */
    .hero {
        min-height: 100vh;
        padding: 0 15px;
        padding-top: calc(var(--header-height) + 20px);
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 20px auto 0;
        gap: 15px;
    }
    
    .hero-button {
        width: 100%;
        text-align: center;
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    /* Services */
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 25px;
        min-height: 300px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    /* About */
    .about-content {
        text-align: center;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-image {
        aspect-ratio: 384/216;
        height: auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Contact */
    .contact-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    
    /* Footer */
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* CTA - Mobilde background sorununu çöz */
    .cta {
        padding: 60px 0;
        background-attachment: scroll !important;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    /* General */
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    header {
        padding: 15px 0;
        height: 70px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    /* PDF Modal Mobile */
    .catalog-modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        margin: 0;
    }
    
    .catalog-modal-header {
        padding: 10px 15px;
        flex-wrap: wrap;
    }
    
    .catalog-modal-header h2 {
        font-size: 1rem;
    }
    
    .catalog-download-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .catalog-modal-body {
        border-radius: 0;
    }
    
    #catalogFrame {
        border-radius: 0;
    }
    
    .catalog-fallback i {
        font-size: 3rem;
    }
    
    .catalog-fallback h3 {
        font-size: 1.2rem;
    }
    
    /* Typography */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Hero */
    .hero {
        padding-top: 70px;
        min-height: calc(100vh - 20px);
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-title span::after {
        height: 3px;
        bottom: 5px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .hero-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .scroll-down {
        bottom: 20px;
    }
    
    .scroll-down i {
        font-size: 1.5rem;
    }
    
    /* Services */
    .service-item {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* About */
    .about-title,
    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .about-image {
        aspect-ratio: 384/216;
        height: auto;
        border-radius: 15px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Contact */
    .contact-item {
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        margin-right: 15px;
    }
    
    .contact-label {
        font-size: 0.9rem;
    }
    
    .contact-value {
        font-size: 0.85rem;
    }
    
    
    /* CTA */
    .cta {
        background-attachment: scroll !important;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-logo {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-about {
        font-size: 0.9rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    /* Back to Top */
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    
    /* Disable custom cursor on mobile */
    .cursor,
    .cursor-dot {
        display: none !important;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .hero-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .services-grid {
        gap: 15px;
    }
    
    .service-item {
        padding: 15px;
    }
}