@import url("https://fonts.googleapis.com/css2?family=Climate+Crisis&family=Funnel+Display:wght@300..800&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url(../fonts/local-fonts.css);

:root {
  --color-primary: #8cff00;
  --color-primary-rgb: 140, 255, 0;
  --color-primary2: #e85a2f;
  --color-primary2-rgb: 232, 90, 47;
  --color-primary3: #ff6b45;
  --color-primary3-rgb: 255, 107, 69;
  --color-1: #f4f4f4;
  --color-1-rgb: 244, 244, 244;
  --color-2: #141414;
  --color-2-rgb: 20, 20, 20;
  --color-3: #fcfcfc;
  --color-3-rgb: 252, 252, 252;
  --color-4: #5b5b5b;
  --color-4-rgb: 91, 91, 91;
  --color-5: #e7e7e7;
  --color-5-rgb: 231, 231, 231;
  --color-6: #d2d2d2;
  --color-6-rgb: 210, 210, 210;
  --color-7: #f5f5f5;
  --color-7-rgb: 245, 245, 245;
  --color-8: #1d1d1d;
  --color-8-rgb: 29, 29, 29;
  --color-9: #626262;
  --color-9-rgb: 98, 98, 98;
  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;
  --color-black: #000000;
  --color-black-rgb: 0, 0, 0;
  --color-dark: #0e0f11;
  --color-dark-rgb: 14, 15, 17;
  --color-dark2: #1d1d1d;
  --color-dark2-rgb: 29, 29, 29;
  --color-dark3: #1e1e1e;
  --color-dark3-rgb: 30, 30, 30;
  --color-light: #f8f7f3;
  --color-light-rgb: 248, 247, 243;
}

/* Kurumsal - About Section Lottie Background */
.about-section {
  position: relative;
}

.about-section .about-lottie-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.about-section .about-container {
  position: relative;
  z-index: 1;
}

/* Sadece quote-section arkasında görünüm ve ölçüler */
.about-section .quote-section {
  position: relative;
}
.about-section .quote-section .about-lottie-bg {
  inset: -10% -5% -10% -5%;
  opacity: 0.25;
}

/* Clients Section */
.clients-section {
  padding: 120px 20px 140px;
  background: linear-gradient(180deg, rgba(14,22,30,0) 0%, rgba(14,22,30,0.55) 25%, rgba(14,22,30,0.9) 100%);
}

.clients-section .clients-container {
  max-width: 1280px;
  margin: 0 auto;
}

.clients-intro {
  text-align: center;
  font-size: 28px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 80px;
  font-weight: 500;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 80px;
  align-items: center;
  justify-items: center;
}

.client-item {
  width: 320px;
  height: 90px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, border-color .25s ease, color .25s ease, background .25s ease;
}

.client-item:hover {
  scale: 1.15;
}

.client-item img {
  max-width: 100%;
  max-height: 75px;
  object-fit: contain;
  filter: brightness(0.9) contrast(0.9) opacity(0.7);
  transition: filter .25s ease, opacity .25s ease;
}

.client-item:hover img {
  filter:  brightness(1) contrast(1) opacity(0.95);
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 48px;
  }
  .clients-intro { font-size: 24px; }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 32px;
  }
  .client-item { width: 280px; height: 80px; font-size: 18px; }
  .clients-intro { font-size: 20px; }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .clients-section { padding: 80px 16px 100px; }
}

body{
    overflow-x: visible;
    font-family: 'Inter', sans-serif !important;
}

/* Global Font Family */
* {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

p, span, div, a, button, input, textarea, select {
    font-family: 'Inter', sans-serif;
}




/* Smooth wrapper for ScrollSmoother */
#smooth-wrapper {
    overflow: hidden;
}

#smooth-content {
    overflow: visible;
}
/* Overlay Menu */
.overlay-menu {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 12, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
    flex-direction: column;
    align-items: center; /* yatayda ortala */
    justify-content: flex-start;
    z-index: 99999;
    padding: 160px 40px 32px; /* üst boşluğu düşür, toplam yüksekliği sıkılaştır */
    height: auto;            /* içerik yüksekliği kadar */
    max-height: 100dvh;      /* ekranı aşmasın */
    overflow: hidden;        /* sayfa kaymasın */
    overscroll-behavior: contain;
}

.overlay-menu.active {
    display: flex;
    animation: fadeInOverlay 200ms ease forwards;
}

/* Crest (üstteki kavisli boşluk) */
.overlay-crest {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.crest-svg {
    width: 120%; /* scale-x a little more */
    height: auto;
    transform: translateX(-10%);
    fill: #0e1b3d; /* belirgin koyu-mavi */
}

.crest-top {
    position: absolute;
    top: 0;
}

.crest-bottom {
    position: absolute;
    top: 60px; /* X butonu hizasında görünür kavis */
    transform: translateX(-10%) rotate(180deg);
    opacity: 0.9;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.menu-close {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
}

.overlay-nav {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;      /* metni ortala */
    align-items: center;     /* listeyi ortala */
    z-index: 1;
    max-height: calc(100dvh - 140px); /* daha az offset, daha fazla görünür alan */
    overflow-y: auto;
}

.overlay-link {
    color: #e8eeff5c;
    text-decoration: none;
    font-size: clamp(28px, 5vw, 64px);
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.overlay-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.overlay-social {
    position: absolute;
    bottom: 32px;
    display: flex;
    gap: 14px;
    color: rgba(255,255,255,0.6);
}
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #000000; /* koyu arka plan, header transparanlığı daha belirgin */
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(26, 26, 46, 0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    width: 10%;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-mark {
    width: 44px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.logo-mark span {
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 1.5px;
}

.logo-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 3px;
}

/* Header Content */
.header-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 19px;
    font-weight: 1;
    position: relative;
}

.phone-icon {
    font-size: 22px;
    color: #c2c3c6;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    transition: color 0.3s ease;
}

.phone-icon:hover {
    color: white;
}

.phone-number {
    color: #c2c3c6;
    transition: color 0.3s ease;
}

.contact-info:hover .phone-number,
.contact-info:hover .phone-icon {
    color: white;
}

/* Call tooltip */
.call-tooltip {
    position: absolute;
    left: 55%;
    bottom: -50px;
    transform: translateX(-50%);
    background: #e5211b;
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(61, 99, 255, 0.35);
    opacity: 0;
    pointer-events: none; /* hover'a geçerken kapanmaması için aşağıda açacağız */
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1001;
    text-align: center;
}

.call-tooltip::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px #e5211b;
    filter: drop-shadow(0 2px 2px rgba(196, 196, 196, 0.2));
}

.contact-info:hover .call-tooltip,
.call-tooltip:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-44%);
        width: 100%;
    pointer-events: auto; /* tooltip üzerine gelince açık kalsın */
}

/* Globe Icon */
.globe-icon {
    display: flex;
    align-items: center;
}

.globe-icon i {
    font-size: 22px;
    color: #c2c3c6;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: color 0.3s ease;
}

.globe-icon i:hover {
    color: white;
}

/* CTA Button */
.cta-button {
    background: #ffffff;
    color: #0b1220;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.0);
}

/* CTA text: relative z-2 font-book text-5 text-white duration-300
   2xl:text-4.5 xl:text-4 lg:text-3.5 */
.cta-button span {
    position: relative;          /* relative */
    z-index: 2;                  /* z-2 */
    font-weight: 600;
    color: #0b1220;
    transition: color 0.2s ease;
    font-size: 16px;
}

.cta-button:hover span { color: #0b1220; }

/* breakpointlarda CTA metin boyutu sabit kalsın */

.cta-button:hover {
    transform: translateY(-1px);
    background: #f1f5f9;
    border-color: rgba(255,255,255,0.06);
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 12px;
    background: rgba(60, 60, 60, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(80, 80, 80, 0.9);
}

.hamburger-menu span {
    width: 22px;
    height: 3px;
    background: #c2c3c6; /* iletişim rengi ile aynı */
    border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center; /* hover'da yönlü küçültme için temel */
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2px);
}

.hamburger-menu.active span:nth-child(2) {
    transform: rotate(-45deg) translate(2px, -2px);
}

/* Hover: çizgiler merkeze doğru küçülsün */
.hamburger-menu:hover span:nth-child(1) {
    transform-origin: left center;
    transform: scaleX(0.6) translateX(4px);
}

.hamburger-menu:hover span:nth-child(2) {
    transform-origin: right center;
    transform: scaleX(0.6) translateX(-4px);
}

/* Hover rengini beyaza çek */
.hamburger-menu:hover span {
    background: #ffffff;
}

/* Hero Section */
.main-content {
    margin-top: 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: left;
    position: relative;
    overflow: visible;
}

/* Base hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: left;
    position: relative;
    overflow: visible;
}

/* Premium hero */
.premium-hero {
    /* Arkaplan görseli ve overlay düzeni için pseudo elementler kullanılacak */
    position: relative; /* ::before/::after hizalaması için */
}

/* Animatable custom properties for hero bg */
@property --bg-scale {
    syntax: '<number>';
    inherits: true;
    initial-value: 1;
}
@property --bg-translate-x {
    syntax: '<length>';
    inherits: true;
    initial-value: 0px;
}
@property --bg-translate-y {
    syntax: '<length>';
    inherits: true;
    initial-value: 0px;
}
@property --bg-x {
    syntax: '<percentage>';
    inherits: true;
    initial-value: 50%;
}
@property --bg-y {
    syntax: '<percentage>';
    inherits: true;
    initial-value: 30%;
}

@keyframes heroZoomIn {
    0% {
        --bg-scale: 1;
        --bg-translate-x: 0px;
        --bg-translate-y: 0px;
        --bg-x: 50%;
        --bg-y: 30%;
    }
    60% {
        --bg-scale: 1.25;
        --bg-translate-x: 0px;
        --bg-translate-y: -30px;
        --bg-x: 50%;
        --bg-y: 28%;
    }
    100% {
        --bg-scale: 1.45;
        --bg-translate-x: 0px;
        --bg-translate-y: -60px;
        --bg-x: 50%;
        --bg-y: 26%;
    }
}

/* Apply deep zoom animation on start */
.premium-hero.zoom-start::before {
    animation: heroZoomIn 4.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Glitch effect keyframes */
@keyframes glitch {
    0% { transform: scale(var(--bg-scale, 1.0)) translate(var(--bg-translate-x, 0), var(--bg-translate-y, 0)) translate(0); }
    2% { transform: scale(var(--bg-scale, 1.0)) translate(var(--bg-translate-x, 0), var(--bg-translate-y, 0)) translate(-2px, 2px); }
    4% { transform: scale(var(--bg-scale, 1.0)) translate(var(--bg-translate-x, 0), var(--bg-translate-y, 0)) translate(2px, -2px); }
    6% { transform: scale(var(--bg-scale, 1.0)) translate(var(--bg-translate-x, 0), var(--bg-translate-y, 0)) translate(-2px, -2px); }
    8% { transform: scale(var(--bg-scale, 1.0)) translate(var(--bg-translate-x, 0), var(--bg-translate-y, 0)) translate(2px, 2px); }
    10% { transform: scale(var(--bg-scale, 1.0)) translate(var(--bg-translate-x, 0), var(--bg-translate-y, 0)) translate(0); }
    100% { transform: scale(var(--bg-scale, 1.0)) translate(var(--bg-translate-x, 0), var(--bg-translate-y, 0)) translate(0); }
}

@keyframes glitchColor {
    0% { filter: hue-rotate(0deg); }
    2% { filter: hue-rotate(90deg) contrast(1.2); }
    4% { filter: hue-rotate(180deg) contrast(1.1); }
    6% { filter: hue-rotate(270deg) contrast(1.3); }
    8% { filter: hue-rotate(360deg) contrast(1.1); }
    10% { filter: hue-rotate(0deg) contrast(1); }
    100% { filter: hue-rotate(0deg) contrast(1); }
}

/* Ensure ::before uses the variables */
.premium-hero::before {
    content: '';
    position: absolute;
    inset: -20%;
    background-image: url('../back.jpg');
    background-size: cover;
    background-position: var(--bg-x, 50%) var(--bg-y, 30%);
    transform: scale(var(--bg-scale, 1.0)) translate(var(--bg-translate-x, 0), var(--bg-translate-y, 0));
    transform-origin: 50% 60%;
    will-change: transform, background-position;
    z-index: 0;
}

/* Glitch effect when zoom is complete */
.premium-hero.glitch::before {
    animation: glitch 0.3s ease-in-out, glitchColor 0.3s ease-in-out;
}


/* Particle system for post-zoom */
#particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.premium-hero.particles #particle-canvas {
    opacity: 0.6;
}


/* Post-Zoom Section - Fare Kontrollü */
.post-zoom-section {
    min-height: 100vh;
    background: #000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    opacity: 0; /* JS tarafından kontrol edilecek */
    visibility: hidden; /* Tamamen gizli */
    z-index: 10;
    pointer-events: none; /* JS tarafından kontrol edilecek */
}

.post-zoom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 50px;
    gap: 50px;
}

.post-zoom-box {
    width: 300px;
    height: 300px;
    background: #00ff88; /* Açık fosfor yeşili */
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    flex-shrink: 0;
}

/* Spline Viewer - Tam Ekran */
spline-viewer {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120vw;
    height: 120vh;
    z-index: 1;
    pointer-events: none !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background: #000000;
    transform: scale(1.1);
    transform-origin: center center;
}

/* Desktop Spline - Show by default, hide below 1440px */
#desktop-spline {
    display: block;
}

/* Mobile Spline - Hide by default, show below 1440px */
#mobile-spline {
    display: none;
}

/* Responsive behavior for Spline viewers */
@media (max-width: 1440px) {
    #desktop-spline {
        display: none;
    }

    #mobile-spline {
        display: block;
    }
}

/* Metin içeriği - Temiz ve Modern */
.text-content {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 600px;
    z-index: 3;
    padding: 0;
}

.text-content h1 {
    color: white;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.text-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.text-content .cta-button {
    background: #00ff88;
    color: #000;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #00ff88;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

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

.text-content .cta-button:hover {
    background: transparent;
    color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

/* Spline içindeki canvas'ı da etkileşimsiz yap */
spline-viewer canvas {
    pointer-events: none !important;
    touch-action: none !important;
}

/* Loading ekranını gizle */
spline-viewer::part(loading) {
    display: none !important;
}

/* "Built with Spline" logosunu gizle */
spline-viewer::part(attribution) {
    display: none !important;
}

/* Spline viewer içindeki tüm attribution elementlerini gizle */
spline-viewer [data-spline-attribution],
spline-viewer .spline-attribution,
spline-viewer .attribution,
spline-viewer a[href*="spline.design"],
spline-viewer div[style*="position: absolute"],
spline-viewer div[style*="bottom"],
spline-viewer div[style*="right"],
spline-viewer span[style*="color"],
spline-viewer *[class*="attribution"],
spline-viewer *[class*="branding"],
spline-viewer *[class*="logo"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* Spline viewer'ın kendisini de kontrol et */
spline-viewer * {
    pointer-events: none !important;
}

/* Sadece canvas'ı etkinleştir */
spline-viewer canvas {
    pointer-events: none !important;
    touch-action: none !important;
}

/* Otomatik animasyon sınıfları artık kullanılmıyor */


/* Eski gradient overlay'i üst katmanda koru */
.premium-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 32, var(--hero-top-fade, 0)) 0%, rgba(11, 18, 32, 0.65) 55%, rgba(11, 18, 32, 1) 100%);
    z-index: 1;
}

.premium-hero .hero-bg .grid {
    position: absolute;
    inset: -10% -10% 0 -10%;
    background: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 44px 44px, 44px 44px;
    mask-image: radial-gradient(60% 50% at 50% 40%, black 55%, transparent 100%);
    opacity: 0.25;
    transform: translateZ(0);
}

/* noise kaldırıldı */

/* orb ve animasyonlar kaldırıldı */

.premium-hero .container {
    position: relative;
    z-index: 2; /* İçerik en üstte */
}

/* Grid ve dekoratif arka planı da kapat */
.premium-hero .hero-bg {
    position: absolute;
    inset: 0;
}

/* Yeni iki sütunlu hero düzeni */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hero-right {
    display: flex;
    justify-content: center;
}

/* Önizleme kartı (cam etkili) */
.preview-card {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.preview-header {
    display: flex;
    gap: 6px;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.preview-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
}

.preview-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    width: max-content;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
}

.metric .value { font-size: 18px; font-weight: 700; color: #fff; }
.metric .label { font-size: 12px; color: rgba(255,255,255,0.7); }

.mini-chart {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: end;
    gap: 6px;
    height: 110px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.04);
}

.mini-chart .bar {
    display: block;
    width: 100%;
    height: var(--h);
    background: linear-gradient(180deg, #60a5fa, #8b5cf6);
    border-radius: 6px;
}

.glass-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.2);
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 800;
}

.gradient-text {
    display: inline-block;
    background: linear-gradient(95deg, #c084fc 0%, #60a5fa 45%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 0 rgba(0,0,0,0);
}

.hero-subtitle {
    max-width: 820px;
    color: rgba(255,255,255,0.78);
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.7;
}

/* Hero highlights */
.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 18px;
    list-style: none;
    margin-top: 4px;
    color: rgba(255,255,255,0.9);
}

.hero-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 8px 10px;
}

.hero-highlights i {
    color: #c084fc;
}

.hero-cta { display: flex; gap: 14px; }

.cta-button.cta-primary {
    box-shadow: 0 10px 28px rgba(139, 92, 246, 0.45);
}

.cta-button.cta-secondary {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

.cta-button.cta-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.45);
}

.trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.glass {
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.trust-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 0 1rem;
    }

    .contact-info {
        display: none;
    }

    .globe-icon {
        display: none;
    }
    
    /* Genel container düzeltmeleri */
    .container {
        padding: 0 15px !important;
    }
    
    /* Section padding düzeltmeleri */
    .section {
        padding: 60px 0 !important;
    }
    
    /* Grid düzeltmeleri */
    .grid {
        gap: 20px !important;
    }
    
    /* Card padding düzeltmeleri */
    .card {
        padding: 20px !important;
    }
    
    /* Görsel boyutları mobil düzeltmeleri */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .hero-image img {
        height: 300px !important;
    }
    
    .gallery-item img {
        height: 200px !important;
    }
    
    .related-card img {
        height: 150px !important;
    }

    .header-content {
        gap: 15px;
    }

    .hero { text-align: center; }
    .premium-hero .container { align-items: center; }
    .hero-highlights { grid-template-columns: 1fr; }
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-left { align-items: center; }
    .hero-right { order: -1; }

    /* Hero Section Mobile */
    .hero-section {
        min-height: 100vh;
        padding: 20px;
    }

    .text-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .text-content h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 20px;
    }

    .text-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .text-content .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }

    spline-viewer {
        top: -10%;
        left: -16%;
        width: 151vw;
        height: 120vh;
        opacity: 0.3;
        transform: scale(0.8);
        transform-origin: center center;
    }
}

@media (max-width: 480px) {
    .header {
        height: 70px;
    }

    .main-content {
        margin-top: 0;
    }

    .cta-button {
        padding: 10px 16px;
    }
    
    /* Çok küçük ekranlar için ek düzeltmeler */
    .container {
        padding: 0 10px !important;
    }
    
    .section {
        padding: 40px 0 !important;
    }
    
    .card {
        padding: 15px !important;
    }
    
    /* Font boyutları küçült */
    h1 {
        font-size: 24px !important;
    }
    
    h2 {
        font-size: 20px !important;
    }
    
    h3 {
        font-size: 18px !important;
    }
    
    p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .button {
        font-size: 13px;
    }
    
    /* Çok küçük ekranlar için görsel düzeltmeleri */
    .hero-image img {
        height: 250px !important;
    }
    
    .gallery-item img {
        height: 180px !important;
    }
    
    .related-card img {
        height: 120px !important;
    }
    
    /* Logo boyutları küçült */
    .logo img {
        max-width:  80% !important;
    }

    .hamburger-menu {
        width: 35px;
        height: 35px;
    }

    .hamburger-menu span {
        width: 14px;
    }

    .hero-highlights li { font-size: 14px; }

    /* Hero Section Small Mobile */
    .text-content h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 15px;
    }

    .text-content p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .text-content .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    spline-viewer {
        position: absolute;
        top: -10%;
        left: -10%;
        width: 120vw;
        height: 120vh;
        opacity: 0.2;
        transform: scale(0.7);
        transform-origin: center center;
    }
}

/* New Section with Square Box */
.new-section {
    background:;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 10;
    gap: 0;
}

.square-box {
    width: 550px;
    height: 550px;
    background: linear-gradient(to right, #1F2937, #4B5563);
    border-radius: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}



.square-box-2 {
    border: 2px solid #333;
    padding: 0;
    flex: 1;
    height: 550px;
    position: relative;
    overflow: hidden;
}

.macbook-screen {
    height: 100%;
    background: #2d2d2d;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.macbook-header {
    background: #3c3c3c;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #555;
}

.macbook-buttons {
    display: flex;
    gap: 6px;
}

.macbook-buttons .btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.macbook-buttons .btn.red { background: #ff5f56; }
.macbook-buttons .btn.yellow { background: #ffbd2e; }
.macbook-buttons .btn.green { background: #27ca3f; }

.macbook-title {
    color: #ccc;
    font-size: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.macbook-content {
    flex: 1;
    display: flex;
    height: calc(100% - 40px);
}

.code-editor {
    flex: 1;
    background: #1e1e1e;
    border-right: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.editor-header {
    background: #2d2d2d;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.editor-tabs {
    display: flex;
    gap: 8px;
}

.editor-tabs .tab {
    background: #3c3c3c;
    color: #ccc;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.editor-tabs .tab.active {
    background: #007acc;
    color: white;
}

.editor-controls {
    display: flex;
    gap: 4px;
}

.editor-controls i {
    color: #666;
    font-size: 8px;
}

.editor-body {
    flex: 1;
    display: flex;
    font-family: 'Courier New', monospace;
    font-size: 12px;
}

.line-numbers {
    background: #252526;
    color: #858585;
    padding: 10px 8px;
    text-align: right;
    line-height: 1.5;
    border-right: 1px solid #333;
    min-width: 30px;
    display: flex;
    flex-direction: column;
}

.line-number {
    height: 18px;
    line-height: 18px;
    font-size: 12px;
}

.code-content {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.code-editor-text {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #d4d4d4;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.5;
    resize: none;
    padding: 0;
    margin: 0;
}

.editor-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #333;
}

.save-btn, .run-btn {
    background: #007acc;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.save-btn:hover, .run-btn:hover {
    background: #005a9e;
}

.run-btn {
    background: #28a745;
}

.run-btn:hover {
    background: #1e7e34;
}

.photoshop-window {
    flex: 1;
    background: #2d2d2d;
    display: flex;
    flex-direction: column;
}

.ps-header {
    background: #3c3c3c;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.ps-title {
    color: #ccc;
    font-size: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ps-controls {
    display: flex;
    gap: 8px;
}

.ps-controls i {
    color: #ccc;
    font-size: 10px;
    cursor: pointer;
}

.ps-controls i:hover {
    color: #fff;
}

.ps-content {
    flex: 1;
    display: flex;
}

.ps-sidebar {
    width: 180px;
    background: #252526;
    border-right: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.ps-tools {
    padding: 15px 10px;
    border-bottom: 1px solid #333;
}

.ps-tools .tool {
    width: 100%;
    height: 35px;
    background: #3c3c3c;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 8px;
    padding: 0 10px;
    gap: 8px;
}

.ps-tools .tool.active {
    background: #007acc;
}

.ps-tools .tool:hover {
    background: #555;
}

.ps-tools .tool i {
    color: #ccc;
    font-size: 12px;
    width: 16px;
}

.ps-tools .tool span {
    color: #ccc;
    font-size: 11px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ps-tools .tool.active i,
.ps-tools .tool.active span {
    color: white;
}

.ps-layers {
    flex: 1;
    padding: 15px 10px;
}

.ps-layers h4 {
    color: #ccc;
    font-size: 12px;
    margin: 0 0 10px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.layer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #2d2d2d;
    border: 1px solid #444;
    margin-bottom: 4px;
    position: relative;
}

.layer-item:hover {
    background: #3c3c3c;
}

.layer-item.active {
    background: #007acc;
    border-color: #005a9e;
}

.layer-item i {
    color: #ccc;
    font-size: 10px;
    width: 16px;
}

.layer-item span {
    color: #ccc;
    font-size: 11px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex: 1;
}

.layer-item.active i,
.layer-item.active span {
    color: white;
}

.layer-item .fa-lock,
.layer-item .fa-unlock {
    color: #666;
    font-size: 8px;
}

.ps-properties {
    padding: 15px 10px;
    border-top: 1px solid #333;
}

.ps-properties h4 {
    color: #ccc;
    font-size: 12px;
    margin: 0 0 15px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.property-group {
    margin-bottom: 15px;
}

.property-group label {
    color: #ccc;
    font-size: 11px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: block;
    margin-bottom: 5px;
}

.slider {
    width: 100%;
    height: 4px;
    background: #444;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.slider-fill {
    height: 100%;
    background: #007acc;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.property-group select {
    width: 100%;
    background: #2d2d2d;
    border: 1px solid #444;
    color: #ccc;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ps-canvas {
    flex: 1;
    background: #1e1e1e;
    display: flex;
    flex-direction: column;
}

.canvas-header {
    background: #2d2d2d;
    padding: 8px 15px;
    border-bottom: 1px solid #333;
    color: #ccc;
    font-size: 11px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.canvas-info {
    background: #1e1e1e;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #444;
    font-family: 'Courier New', monospace;
    color: #4ecdc4;
}

.canvas-content {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    top: -90px;
}

.design-preview {
    width: 300px;
    height: 200px;
    position: relative;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.logo-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.samedya-logo {
    width: 80px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.samedya-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.3));
}

.text-layer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.sub-text {
    display: block;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 8px 12px;
    border-radius: 6px;
}

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

.gradient-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 8px;
}

.effects-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.box-content {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
    text-align: left;
    color: black;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-mark {
    font-size: 120px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.main-text {
    font-size: 48px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin: 0 0 30px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -1px;
}

.sub-text {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff94;
    line-height: 1.6;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Box 2 Styles */
.box-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.box-icon i {
    font-size: 32px;
    color: white;
}

.box-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0 0 20px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.box-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Box 3 Styles */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive adjustments for the square box */
@media (max-width: 768px) {
    .new-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        align-items: center;
    }

    .square-box {
        width: 500px;
        height: 500px;
    }

    .square-box-2 {
        flex: 1;
        height: 400px;
    }

    .macbook-content {
        flex-direction: column;
    }

    .code-editor {
        border-right: none;
        border-bottom: 1px solid #333;
    }

    .editor-body {
        font-size: 11px;
    }

    .ps-canvas {
        padding: 15px;
    }

    .canvas-content {
        width: 150px;
        height: 120px;
    }

    .creative-container {
        padding: 20px;
    }

    .agency-logo {
        gap: 12px;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .agency-name {
        font-size: 18px;
    }

    .award-badge {
        padding: 6px 12px;
        font-size: 10px;
    }

    .box-content {
        padding: 40px 30px;
    }

    .quote-mark {
        font-size: 80px;
        margin-bottom: 15px;
    }

    .main-text {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .sub-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .new-section {
        padding: 30px 15px;
        gap: 20px;
    }

    .square-box {
        width: 400px;
        height: 400px;
    }

    .square-box-2 {
        flex: 1;
        height: 350px;
    }

    .editor-body {
        font-size: 10px;
    }

    .line-numbers {
        min-width: 25px;
        padding: 8px 6px;
    }

    .ps-toolbar {
        width: 35px;
        padding: 8px 4px;
    }

    .tool {
        width: 25px;
        height: 25px;
    }

    .tool i {
        font-size: 10px;
    }

    .canvas-content {
        width: 120px;
        height: 100px;
        padding: 10px;
    }

    .layer {
        padding: 6px 8px;
        font-size: 10px;
    }

    .creative-container {
        padding: 15px;
    }

    .agency-logo {
        gap: 10px;
    }

    .logo-mark {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .agency-name {
        font-size: 16px;
    }

    .agency-tagline {
        font-size: 10px;
    }

    .award-badge {
        padding: 5px 10px;
        font-size: 9px;
    }

    .project-image {
        height: 60px;
    }

    .project-overlay {
        width: 30px;
        height: 30px;
    }

    .project-overlay i {
        font-size: 12px;
    }

    .project-info h4 {
        font-size: 12px;
    }

    .project-info p {
        font-size: 10px;
    }

    .box-content {
        padding: 30px 25px;
    }

    .quote-mark {
        font-size: 60px;
        margin-bottom: 10px;
    }

    .main-text {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .sub-text {
        font-size: 13px;
    }

    .square-box-2 {
        padding: 30px 20px;
    }

    .square-box-2 h3 {
        font-size: 20px;
    }

    .square-box-2 li {
        font-size: 14px;
    }
}

/* Hakkımızda Section - Profesyonel Versiyon */
.about-section {
    background: #0001;
    padding: 120px 0;
    color: white;
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Büyük Alıntı Bölümü */
.quote-section {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 0;
}

.main-quote {
    font-size: clamp(1.5rem, 3vw, 4rem);
    font-weight: 200;
    line-height: 1.3;
    color: white;
    margin: 0 0 30px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: normal;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.quote-author {
    font-size: 1.2rem;
    color: #99afc2;
    font-weight: 500;
    font-style: normal;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Ana İçerik */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-text {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 0 80px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #99afc2;
    margin: 0 0 30px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
}

/* Görsel ve Metin Kombinasyonu */
.content-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.visual-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.visual-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.visual-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
    position: relative;
}

.visual-icon {
    font-size: 4rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lottie Animation Styles */
.lottie-animation {
    width: 120px;
    height: 120px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.1));
}

.lottie-animation:hover {
    transform: scale(1.05);
}

/* Lottie Animation Container */
#digital-agency-lottie {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Lottie SVG Styling */
.lottie-svg {
    transition: all 0.3s ease;
}

.lottie-svg:hover {
    filter: brightness(1.2);
}

.visual-content span {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color:  #99afc2;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
}

/* İstatistikler */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #00ff88;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        padding: 0 80px;
    }

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

    .visual-section {
        justify-content: center;
        margin-bottom: 20px;
    }

    .text-section {
        text-align: center;
        align-items: center;
    }

    .stats-section {
        gap: 60px;
    }

    .visual-placeholder {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-container {
        padding: 0 50px;
    }

    .quote-section {
        margin-bottom: 60px;
        padding: 40px 0;
    }

    .main-quote {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .quote-author {
        font-size: 1rem;
    }

    .about-content {
        gap: 40px;
    }

    .about-text {
        text-align: center;
        padding: 0 10px;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .content-visual {
        gap: 30px;
        grid-template-columns: 1fr;
        align-items: center;
    }

    .visual-section {
        justify-content: center;
        margin-bottom: 20px;
    }

    .text-section {
        text-align: center;
        align-items: center;
        padding: 0 10px;
    }

    .visual-placeholder {
        height: 250px;
    }

    .visual-icon {
        font-size: 3rem;
    }

    .visual-content span {
        font-size: 1.1rem;
    }

    .content-text {
        font-size: 1rem;
        text-align: center;
    }

    .stats-section {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 30px;
    }

    .quote-section {
        margin-bottom: 40px;
        padding: 30px 0;
    }

    .main-quote {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .quote-author {
        font-size: 0.9rem;
    }

    .about-content {
        gap: 30px;
    }

    .about-text {
        text-align: center;
        padding: 0 5px;
    }

    .intro-text {
        font-size: 1rem;
    }

    .content-visual {
        gap: 25px;
        grid-template-columns: 1fr;
        align-items: center;
    }

    .visual-section {
        justify-content: center;
        margin-bottom: 15px;
    }

    .text-section {
        text-align: center;
        align-items: center;
        padding: 0 5px;
    }

    .visual-placeholder {
        height: 200px;
    }

    .visual-icon {
        font-size: 2.5rem;
    }

    .visual-content span {
        font-size: 1rem;
    }

    .content-text {
        font-size: 0.95rem;
        text-align: center;
    }

    .stats-section {
        gap: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* İnteraktif Süreç Bölümü */
.process-section {
    background: #0b1220;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 100px;
    position: relative;
    z-index: 2;
}

.header-text .subtitle {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.header-text .title {
    margin: 10px 0 0 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: -1px;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.portfolio-button {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 12px 16px 12px 24px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Plus Jakarta Sans', sans-serif;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.portfolio-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.portfolio-button .arrow-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    border-radius: 50%;
    margin-left: 20px;
    font-size: 18px;
    line-height: 1;
    color: #000;
    font-weight: 700;
    transition: all 0.3s ease;
}

.portfolio-button:hover .arrow-circle {
    transform: rotate(45deg) scale(1.1);
}

/* Horizontal Scroll Container */
.process-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 100px;
  position: relative;
  z-index: 2;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  transition: scroll-behavior 0.3s ease;
}

.process-scroll-container::-webkit-scrollbar {
  display: none; /* WebKit */
}

.process-scroll-container.scrolling {
  scroll-behavior: auto;
}

.process-grid {
  display: flex;
  gap: 25px;
  width: max-content;
  padding: 20px 0;
  position: relative;
  will-change: transform;
}

/* GSAP Horizontal Scroll için */
.process-section.pinned {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
}

.process-section.pinned .process-scroll-container {
  height: 100vh;
  display: flex;
  align-items: center;
}

.card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 600px;
    height: 708px;
    flex-shrink: 0;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
}

.tags { 
    display: flex; 
    gap: 8px; 
}

.tags span {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    transition: color 0.4s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.card-number-wrapper { 
    position: relative; 
}

.splat {
    position: absolute;
    top: -20px;
    right: -25px;
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    border-radius: 48% 52% 51% 49% / 40% 41% 59% 60%;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.card-image {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
    margin: auto 0;
    pointer-events: none;
}

.card-image img { 
    max-width: 160px; 
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.card-footer {
    position: relative;
    transition: all 0.4s ease;
}

.card-footer h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 700;
    color: white;
    transition: color 0.4s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.3;
}

.card-footer p {
    margin: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.7);
    max-width: 90%;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.4s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.arrow-link {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 28px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease;
    font-weight: 700;
}

/* --- HOVER ETKİLEŞİMİ --- */
.card:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-radius: 28px;
}

.card:hover .tags span {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.card:hover .splat {
    transform: scale(1);
}

.card:hover .card-number {
    color: white;
}

.card:hover .card-footer h3,
.card:hover .card-footer p,
.card:hover .arrow-link {
    color: white;
}

.card:hover .card-image {
    opacity: 1;
    transform: translateY(0);
}

.card:hover .arrow-link {
    transform: rotate(45deg) scale(1.1);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .process-header {
        padding: 0 80px;
    }
    
    .process-scroll-container {
        padding: 0 80px;
    }
    
    .card {
        width: 500px;
        height: 600px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }
    
    .process-header {
        justify-content: center;
        text-align: center;
        padding: 0 50px;
        margin-bottom: 40px;
    }
    
    .process-scroll-container {
        padding: 0 50px;
    }
    
    .process-grid {
        gap: 20px;
    }
    
    .card {
        width: 400px;
        height: 550px;
        padding: 25px;
    }
    
    .card-number {
        font-size: 40px;
    }
    
    .card-footer h3 {
        font-size: 18px;
    }
    
    .card-footer p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .process-header {
        padding: 0 30px;
    }
    
    .process-scroll-container {
        padding: 0 30px;
    }
    
    .header-text .title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .card {
        width: 320px;
        height: 480px;
        padding: 20px;
    }
    
    .card-number {
        font-size: 36px;
    }
    
    .tags span {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .card-footer h3 {
        font-size: 16px;
    }
    
    .card-footer p {
        font-size: 12px;
    }
    
    .arrow-link {
        font-size: 24px;
    }
}

/* Work Process Styles from al.css */
.work-process__header-right {
  gap: 20px;
}
@media only screen and (max-width: 575.98px) {
  .work-process__header-right {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}
.work-process__items {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 20px 0;
  position: relative;
  will-change: transform;
}
@media only screen and (max-width: 767.98px) {
  .work-process__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.work-process__item {
  border-radius: 20px;
  border: 1.5px solid rgba(var(--color-2-rgb), 0.3);
  background: #ffffff;
  padding: 45px 50px;
  max-width: 608px;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 1439.98px) {
  .work-process__item {
    max-width: 500px;
    padding: 25px 0px;
  }
}

.work-process__item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 150px;
  left: 50%;
  top: 50%;
  background-color: var(--color-2);
  z-index: -2;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

.work-process__item .work-process-shape {
  position: absolute;
  top: -2px;
  right: -2px;
  color: var(--color-primary);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (max-width: 1439.98px) {
  .work-process__item .work-process-shape {
    width: 200px;
    height: 165px;
  }
  .work-process__item .work-process-shape svg {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 1199.98px) {
  .work-process__item .work-process-shape {
    width: 180px;
    height: 150px;
  }
}
@media only screen and (max-width: 575.98px) {
  .work-process__item .work-process-shape {
    width: 120px;
    height: 100px;
  }
}

.work-process__item .work-process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.work-process__item .work-process-header .tags {
  display: flex;
  gap: 14px;
}
@media only screen and (max-width: 767.98px) {
  .work-process__item .work-process-header .tags {
    gap: 6px;
  }
}

.work-process__item .work-process-header .tags span {
  border-radius: 50px;
  background: rgba(var(--color-2-rgb), 0.15);
  color: var(--color-2);
  font-family: "Creato Display", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0.16px;
  padding: 3.5px 18.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (max-width: 767.98px) {
  .work-process__item .work-process-header .tags span {
    font-size: 14px;
    padding: 2px 15px;
  }
}

.work-process__item .work-process-header .work-process-number {
  text-align: center;
  font-family: "Space Mono", monospace;
  font-size: 86px;
  font-weight: 400;
  line-height: 80%;
  letter-spacing: -1.72px;
  color: #1a1a1a;
  opacity: 0.8;
}
@media only screen and (max-width: 1439.98px) {
  .work-process__item .work-process-header .work-process-number {
    font-size: 72px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .work-process__item .work-process-header .work-process-number {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991.98px) {
  .work-process__item .work-process-header .work-process-number {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767.98px) {
  .work-process__item .work-process-header .work-process-number {
    font-size: 45px;
  }
}

.work-process__item .work-process-footer {
  margin-top: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 1439.98px) {
  .work-process__item .work-process-footer {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 991.98px) {
  .work-process__item .work-process-footer {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767.98px) {
  .work-process__item .work-process-footer {
    margin-top: 50px;
  }
}

.work-process__item .work-process-footer .work-process-image {
  margin-bottom: 60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
@media only screen and (max-width: 1199.98px) {
  .work-process__item .work-process-footer .work-process-image {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .work-process__item .work-process-footer .work-process-image {
    margin-bottom: 20px;
  }
  .work-process__item .work-process-footer .work-process-image img {
    max-width: 50%;
  }
}

.work-process__item .work-process-footer .work-process-image img {
  max-width: 100%;
  height: auto;
}

.work-process__item .work-process-footer .work-process-content {
  gap: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work-process__item .work-process-footer .work-process-content .content {
  max-width: 398px;
  text-align: center;
}

.work-process__item .work-process-footer .work-process-content .content .title {
  font-weight: 600;
  line-height: 105.882%;
  font-size: 24px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.work-process__item .work-process-footer .work-process-content .content .title a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
}

.work-process__item .work-process-footer .work-process-content .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 155.556%;
  letter-spacing: 0.18px;
  margin-top: 15px;
  color: #4a4a4a;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (max-width: 767.98px) {
  .work-process__item .work-process-footer .work-process-content .content p {
    font-size: 16px;
    margin-top: 5px;
  }
}

.work-process__item .work-process-footer .work-process-content .work-process-link {
  font-size: 48px;
  position: absolute;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  bottom: 12px;
  left: 12px;
  transition: transform 200ms ease;
}
@media only screen and (max-width: 991.98px) {
  .work-process__item .work-process-footer .work-process-content .work-process-link {
    font-size: 44px;
    bottom: 10px;
    left: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  .work-process__item .work-process-footer .work-process-content .work-process-link {
    font-size: 40px;
    bottom: 8px;
    left: 8px;
  }
}
@media only screen and (max-width: 575.98px) {
  .work-process__item .work-process-footer .work-process-content .work-process-link {
    font-size: 36px;
    bottom: 6px;
    left: 6px;
  }
}

/* Hover: move diagonally to bottom-right */
.work-process__item:hover .work-process-footer .work-process-content .work-process-link {
  transform: translate(8px, 8px);
}

.work-process__item .work-process-footer .work-process-content .work-process-link span {
  color: var(--color-2);
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.work-process__item .work-process-footer .work-process-content .work-process-link span i,
.work-process__item .work-process-footer .work-process-content .work-process-link span svg {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  position: absolute;
}

.work-process__item .work-process-footer .work-process-content .work-process-link span i:nth-of-type(2),
.work-process__item .work-process-footer .work-process-content .work-process-link span svg:nth-of-type(2) {
  opacity: 0;
  visibility: hidden;
}

.work-process__item .work-process-footer .work-process-content .work-process-link span i:first-of-type,
.work-process__item .work-process-footer .work-process-content .work-process-link span svg:first-of-type {
  top: 0;
  left: 0;
}

.work-process__item .work-process-footer .work-process-content .work-process-link span i:last-of-type,
.work-process__item .work-process-footer .work-process-content .work-process-link span svg:last-of-type {
  top: 100%;
  left: -50px;
  opacity: 0;
  visibility: hidden;
}

.work-process__item .work-process-footer .work-process-content .work-process-link span:hover i:first-of-type,
.work-process__item .work-process-footer .work-process-content .work-process-link span:hover svg:first-of-type {
  top: -50px;
  left: 50px;
  opacity: 0;
  visibility: hidden;
}

.work-process__item .work-process-footer .work-process-content .work-process-link span:hover i:last-of-type,
.work-process__item .work-process-footer .work-process-content .work-process-link span:hover svg:last-of-type {
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
}

/* Hover Effects */
.work-process__item:hover {
  border-color: var(--color-primary);
  background: #f8f9fa;
  box-shadow: 0 8px 40px rgba(140, 255, 0, 0.15);
  transform: translateY(-5px);
}



.work-process__item:hover .work-process-shape {
  opacity: 0.8;
  transform: scale(1.05);
}

.work-process__item:hover .work-process-header .tags span {
  background: var(--color-primary);
  color: #000000;
  transform: scale(1.05);
}

.work-process__item:hover .work-process-header .work-process-number {
  color: #ffffff;
  opacity: 1;
  transform: scale(1.1);
}

.work-process__item:hover .work-process-footer .work-process-image {
  opacity: 1;
  visibility: visible;
}

.work-process__item:hover .work-process-footer .work-process-content .content .title {
  color: #000000;
  transform: translateY(-2px);
}

.work-process__item:hover .work-process-footer .work-process-content .content p {
  color: #2a2a2a;
  transform: translateY(-1px);
}

.work-process__item:hover .work-process-footer .work-process-content .work-process-link span {
  color: var(--color-primary);
  transform: scale(1.1);
}

/* Work Process 2 Styles */
.work-process-2.section {
  border-top: 1px solid rgba(var(--color-2-rgb), 0.1);
  padding-top: 50px;
}

.work-process-2__accordion .accordion-item {
  font-family: "Nohemi", sans-serif;
  background-color: transparent;
  border-left: none;
  border-right: none;
  line-height: 1;
}

.work-process-2__accordion .accordion-item:first-of-type {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.work-process-2__accordion .accordion-item:first-of-type > .accordion-header .accordion-button {
  padding-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.work-process-2__accordion .accordion-item:last-of-type {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.work-process-2__accordion .accordion-item:last-of-type > .accordion-header .accordion-button {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.work-process-2__accordion .accordion-header {
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  line-height: 1;
}

.work-process-2__accordion .accordion-button {
  background-color: initial;
  font: inherit;
  line-height: inherit;
  gap: 10px;
  padding-inline-start: 0;
}

@media only screen and (min-width: 1400px) {
  .work-process-2__accordion .accordion-button {
    padding-block: 35px 55px;
  }
}

@media only screen and (max-width: 1199.98px) {
  .work-process-2__accordion .accordion-button {
    align-items: center;
  }
}

.work-process-2__accordion .accordion-button:not(.collapsed) {
  background-color: initial;
  color: initial;
  box-shadow: none;
}

.work-process-2__accordion .accordion-button:not(.collapsed)::after {
  font: var(--fa-font-regular);
  content: "\f068";
  margin-right: 0;
  transform-origin: center center;
  flex-basis: content;
  font-weight: 400;
  font-size: 17px;
}

.work-process-2__accordion .accordion-button:not(.collapsed) span {
  opacity: 0.7;
  visibility: visible;
  height: auto;
}

.work-process-2__accordion .accordion-button:focus {
  box-shadow: none;
}

.work-process-2__accordion .accordion-button::after {
  background-image: none;
  font: var(--fa-font-regular);
  content: "+";
  transform-origin: center center;
  flex-basis: content;
  color: #999999;
  font-weight: 400;
  font-size: 17px;
  margin-left: 153px;
}

@media only screen and (max-width: 1599.98px) {
  .work-process-2__accordion .accordion-button::after {
    margin-left: 80px;
  }
}

@media only screen and (max-width: 1199.98px) {
  .work-process-2__accordion .accordion-button::after {
    margin-left: auto;
  }
}

.work-process-2__accordion .accordion-button em {
  font-family: "Creato Display", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16px;
  margin-right: 80px;
  opacity: 0.7;
}

@media only screen and (max-width: 767.98px) {
  .work-process-2__accordion .accordion-button em {
    margin-right: 10px;
  }
}

.work-process-2__accordion .accordion-button span {
  font-family: "Creato Display", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 155.556%;
  letter-spacing: 0.18px;
  max-width: 474px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

@media only screen and (max-width: 1599.98px) {
  .work-process-2__accordion .accordion-button span {
    max-width: 350px;
  }
}

@media only screen and (max-width: 1199.98px) {
  .work-process-2__accordion .accordion-button span {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  .work-process-2__accordion .accordion-collapse {
    display: none;
  }
}

.work-process-2__accordion .accordion-body {
  font-family: "Creato Display", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 155.556%;
  letter-spacing: 0.18px;
  opacity: 0.7;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  padding-inline-start: 0;
  padding-top: 0;
}

/* Work Process Extend Properties */
.work-process__header-right,
.work-process__items,
.work-process__item .work-process-header,
.work-process__item .work-process-header .tags,
.work-process__item .work-process-footer .work-process-content {
  display: flex;
}

.work-process__item .work-process-header {
  align-items: start;
}

.work-process__item .work-process-footer .work-process-content {
  flex-wrap: wrap;
}

.work-process__item {
  flex-shrink: 0;
}

.work-process__item::before,
.work-process__item .work-process-shape,
.work-process__item .work-process-footer .work-process-content .work-process-link span i:first-of-type,
.work-process__item .work-process-footer .work-process-content .work-process-link span i:last-of-type,
.work-process__item .work-process-footer .work-process-content .work-process-link span svg:first-of-type,
.work-process__item .work-process-footer .work-process-content .work-process-link span svg:last-of-type {
  position: absolute;
}

.work-process__item .work-process-header .tags span,
.work-process__item .work-process-header .work-process-number,
.work-process__item .work-process-footer .work-process-content .work-process-link span {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

/* Work Process Section General Styles */
.work-process.section {
  position: relative;
  overflow: hidden;
}

/* GSAP Horizontal Scroll için */
.work-process.section.pinned {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
}

/* Hizmetlerimiz ve Portföyümüz için özel stiller */
.section-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  width: 100%;
}

.section-title span {
  color: #ffffff;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(140, 255, 0, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(140, 255, 0, 0.6));
  }
}

.section-sub-title {
  color: #8cff00;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
span.texts {
    color: black;
}
.section-sub-title::before {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background: #8cff00;
  border-radius: 2px;
}

.orvio-btn {
  background: #ffffff;
  border: 1px solid #000000;
  padding: 12px 20px;
  border-radius: 50px;
  color: #333333;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.orvio-btn:hover {
  background: #f8f8f8;
  border-color: #333333;
}

.orvio-btn .icon {
  background: var(--color-primary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #000000;
  font-size: 12px;
}

.orvio-btn:hover .icon {
  background: var(--color-primary2);
  transform: scale(1.1);
}

/* Butonu en sağa alma */
.section-title .orvio-btn {
  margin-left: auto !important;
  flex-shrink: 0;
  will-change: transform;
}

/* Tablet için responsive ayarları */
@media (max-width: 1024px) {
  .section-title .orvio-btn {
    transform: translateX(150px) translateY(100px);
  }
}

/* Küçük tablet için responsive ayarları */
@media (max-width: 768px) {
  .section-title .orvio-btn {
    transform: translateX(10px) translateY(280px);
  }
  
  .section-title {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px;
  }
}

/* Mobil cihazlar için responsive ayarları */
@media (max-width: 480px) {
  .section-title .orvio-btn {
    transform: none;
    margin-left: 0 !important;
    margin-top: 20px;
  }
  
  .section-title {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px;
  }
}

.section-title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

/* Work Process Header Right - sağa hizalama */
.work-process__header-right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 20px;
}

/* Work Process Header Left - hafif sağa çekme */
.work-process__header-left {
  margin-left: 30px;
  margin-right: 30px;
}

/* Row container - aynı hizada hizalama */
.row.justify-content-between.align-items-end {
  align-items: flex-end !important;
}

/* Work Process Header Left - styles will be added when needed */

/* --- Disable smoother transforms while menu is open --- */
body.menu-open #smooth-content {
    transform: none !important;
}
body.menu-open #smooth-wrapper {
    transform: none !important;
}

/* Overlay sabit kalsın, içerik kaydırmasın */
body.menu-open {
    overflow: hidden;
}

/* ================================
   PORTFOLIO SECTION STYLES
   ================================ */

.portfolio-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0e0f11 0%, #1d1d1d 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(140, 255, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(232, 90, 47, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.portfolio-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-section .section-subtitle {
    color: #8cff00;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.portfolio-section .section-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

.portfolio-section .section-description {
    color: #b0b0b0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 500px;
    gap: 30px;
    margin-bottom: 80px;
}

/* Portfolio Item Sizes - Hepsi aynı boyutta, 1 satırda 2 tane */
.portfolio-item.large,
.portfolio-item.medium,
.portfolio-item.small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Portfolio Item Styles */
.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Project Image Styles */
.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    transition: transform 0.4s ease;
}


.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(140, 255, 0, 0.3);
}

.portfolio-item:hover .project-image {
    transform: scale(1.05);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e1e1e 0%, #2e2e2e 100%);
    position: relative;
    transition: all 0.4s ease;
}

.image-placeholder i {
    font-size: 3rem;
    color: #8cff00;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.image-placeholder span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-item:hover .image-placeholder i {
    transform: scale(1.1);
    color: #ffffff;
}

.portfolio-item:hover .image-placeholder span {
    color: #8cff00;
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 15, 17, 0.95) 0%, rgba(29, 29, 29, 0.95) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.overlay-content p {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Project Tags */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tag {
    background: rgba(140, 255, 0, 0.1);
    color: #8cff00;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(140, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(to right, #a1b0c4, #4B5563);;
    color: #000000;
}

/* Portfolio CTA */
.portfolio-cta {
    text-align: center;
}

.portfolio-cta .cta-button {
    background: linear-gradient(135deg, #8cff00 0%, #7ae600 100%);
    color: #000000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.portfolio-cta .cta-button::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;
}

.portfolio-cta .cta-button:hover::before {
    left: 100%;
}

.portfolio-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(140, 255, 0, 0.3);
}

.portfolio-cta .cta-button i {
    transition: transform 0.3s ease;
}

.portfolio-cta .cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 80px 0;
    }
    
    .portfolio-section .section-title {
        font-size: 2.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 350px;
        gap: 20px;
    }
    
    .portfolio-section .container {
        padding: 0 15px;
    }
    
    .overlay-content h3 {
        font-size: 1.3rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    /* Mobilde resimler tam kaplasın */
    .project-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .portfolio-section .section-title {
        font-size: 1.8rem;
    }
    
    .portfolio-grid {
        grid-auto-rows: 300px;
        gap: 15px;
    }
    
    .image-placeholder i {
        font-size: 2rem;
    }
    
    .image-placeholder span {
        font-size: 1rem;
    }
    
    .portfolio-cta .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* FAQ Section - Görsel tasarıma tam uygun */
.faq-section {
    padding: 120px 0;
    background: #000;
}

.faq-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 80vh;
}

.faq-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.faq-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
}

.faq-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 0;
}

.faq-square-icon {
    width: 8px;
    height: 8px;
    background: #9ca3af;
    display: inline-block;
}

.faq-subtitle svg {
    width: 20px;
    height: 20px;
    margin-left: 4px;
    vertical-align: middle;
}

.faq-title {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.faq-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-width: 400px;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.faq-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    width: 100%;
}
.faq-item { border-bottom-color: rgba(255,255,255,0.12); }

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,255,255,0.03);
    margin: 0 -20px;
    padding: 20px;
    border-radius: 8px;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-toggle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    color: #8cff00;
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

/* Scroll ile sadece highlight için */
.faq-item.scroll-active .faq-answer {
    max-height: 0;
    padding-bottom: 0;
}

.faq-answer p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0 0 16px 0;
    padding: 15px 0;
}

.faq-more-info {
    color: #8cff00;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-more-info:hover {
    color: #adff2f;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
        min-height: auto;
    }
    
    .faq-header {
        text-align: center;
        height: auto;
        padding-bottom: 40px;
    }
    
    .faq-content {
        max-height: none;
        overflow-y: visible;
    }
    
    .faq-title {
        font-size: 50px;
        color: #ffffff;
        font-weight: 700;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-container {
        padding: 0 20px;
        gap: 50px;
    }
    
    .faq-title {
        font-size: 42px;
        color: #ffffff;
        font-weight: 700;
        line-height: 1.3;
    }
    
    .faq-question {
        padding: 16px 0;
    }
    
    .faq-question:hover {
        margin: 0 -15px;
        padding: 16px 15px;
    }
    
    .faq-question h3 {
        font-size: 18px;
        color: #ffffff;
        font-weight: 600;
    }
    
    .faq-answer p {
        font-size: 18px;
        color: #6f7e88;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 15px;
        gap: 40px;
    }
    
    .faq-title {
        font-size: 36px;
        color: #ffffff;
        font-weight: 700;
        line-height: 1.3;
    }
    
    .faq-description {
        font-size: 15px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        color: #ffffff;
        font-weight: 600;
    }

/* Dark theme adjustments for New Section text colors */
.new-section .box-content { color: #ffffff; }
.new-section .box-content .main-text { color: #ffffff; }
.new-section .box-content .sub-text { color: rgba(255,255,255,0.85); }

/* Dark theme for work-process items */
.work-process__item {
  background: #121212;
  border-color: rgba(255,255,255,0.12);
}
.work-process__item .work-process-header .work-process-number { color: rgba(255,255,255,0.1); }
.work-process__item .work-process-header .tags span {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
}
.work-process__item .work-process-footer .work-process-content .content .title { color: #ffffff; }
.work-process__item .work-process-footer .work-process-content .content p { color: rgba(255,255,255,0.75); }
.work-process__item .work-process-footer .work-process-content .work-process-link span { color: #8cff00; }

/* Dark theme hover for work-process */
.work-process__item:hover {
  border-color: rgba(255,255,255,0.25);
  background: #1a1a1a;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.work-process__item:hover .work-process-header .work-process-number { color: #ffffff; }
.work-process__item:hover .work-process-footer .work-process-content .content .title { color: #ffffff; }
.work-process__item:hover .work-process-footer .work-process-content .content p { color: rgba(255,255,255,0.85); }
}

/* Projects Header Button */
.projects-header {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-end;
    padding: 0 20px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fafafa;
    color: black;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(120, 149, 178, 0.3);
    position: relative;
    overflow: hidden;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #e5211b;
    transition: left 0.5s ease;
}

.view-more-btn:hover::before {
    left: 100%;
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 149, 178, 0.4);
    color: white;
    background: #e5211b;
}

.view-more-btn svg {
    transition: transform 0.3s ease;
}

.view-more-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .projects-header {
        margin-bottom: 30px;
        padding: 0 15px;
        justify-content: center;
    }
    
    .view-more-btn {
        padding: 14px 28px;
        font-size: 15px;
        gap: 10px;
    }
}

/* ================================
   FOOTER SECTION STYLES
   ================================ */

.footer-section {
    background: #000000;
    padding: 60px 0;
    position: relative;
    margin-top: 40px;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 30px 30px 0 0;
    margin: 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
    position: relative;
    z-index: 2;
}

/* Contact Information Section */
.footer-contact-section {
    display: flex;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-column {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.contact-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.contact-phone {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.contact-email {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.office-directions {
    color: #8cff00;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-directions:hover {
    color: #7ae600;
}

.contact-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 20px;
}

/* Navigation Links Section */
.footer-nav-section {
    display: flex;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-column {
    flex: 1;
    padding: 0 20px;
}

.nav-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-bottom: 12px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-bottom: 50px;
    display: block;
    transition: color 350ms ease;
}

.nav-links a:hover {
    color: #8b9dc3;
}

/* XL ekranlar için responsive */
@media (min-width: 1280px) {
    .nav-links a {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

/* Map Section */
.map-section {
    flex: 1;
    padding: 0 20px;
}

.map-container {
    position: relative;
    height: 200px;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin {
    color: #8cff00;
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-decorations {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.map-lamp {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
}

.scroll-top {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: #0a0a0a;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top:hover {
    background: #8cff00;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

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

.social-link {
    width: 35px;
    height: 35px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8cff00;
    border-color: #8cff00;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-nav-section {
        flex-wrap: wrap;
    }
    
    .nav-column {
        flex: 1 1 50%;
        margin-bottom: 30px;
    }
    
    .map-section {
        flex: 1 1 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-contact-section {
        flex-direction: column;
        gap: 30px;
        padding: 30px 0;
    }
    
    .contact-divider {
        display: none;
    }
    
    .contact-phone,
    .contact-email {
        font-size: 24px;
    }
    
    .footer-nav-section {
        flex-direction: column;
        padding: 30px 0;
    }
    
    .nav-column {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
    
    .map-section {
        margin-top: 0;
    }
    
    .map-container {
        height: 150px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .contact-title {
        font-size: 14px;
    }
    
    .contact-phone,
    .contact-email {
        font-size: 20px;
    }
    
    .nav-title {
        font-size: 16px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .map-container {
        height: 120px;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
    }
    
    .social-link i {
        font-size: 14px;
    }
}


            
.homepage-projects {
  padding: 140px 0;
  position: relative;
  background: #000;
}

.homepage-projects:before {
  content: "";
  position: absolute;
  left: 30px;
  right: 0;
  top: -50px;
  height: 500px;
  background: url(../img/projects/project-bg.svg) center center/cover no-repeat;
}

.cms .cms-marquee,
.contact .contact-main,
.homepage-projects .project-list,
.picture-ratio .results-container {
  position: relative;
  overflow: hidden;
}

.cms .cms-marquee,
.contact .contact-main,
.homepage-projects .project-list,
.picture-ratio .results-container {
  position: relative;
  overflow: hidden;
}

.homepage-projects .projects-title-wrapper {
  position: relative;
  margin-bottom: 240px;
}

.homepage-projects .projects-title-wrapper .title h2 a {
  color: #dd6060;
  margin-bottom: 20px;
}

.homepage-projects .projects-title-wrapper .title h2 .icon svg {
  fill: #DD6060;
}

.homepage-projects .projects-title-wrapper .title .cnt {
  font-size: 35px;
  color: #ffffff;
  font-weight: 700;
}

.homepage-projects .projects-list-wrapper {
  display: flex;
  margin: 0 -25px;
  position: relative;
  flex-wrap: nowrap;
  justify-content: flex-start;
  scroll-behavior: smooth;
  gap: 20px;
}

.customer-reviews .reviews-container.reverse .reviews-wrapper,
.homepage-projects .projects-list-container.reverse .projects-list-wrapper {
  justify-content: flex-end;
  margin-top: 50px;
}

.project-item {
  padding: 0 25px;
  /* Yan yana görünüm için minimum genişlik */
  flex-shrink: 0;
  width: calc(33.333% - 80px);
  min-width: 450px;
}

.project-item .single-project-item {
  display: block;
  width: 100%;
  max-width: 500px;
  padding-left: 80px;
  overflow: hidden;
  padding-bottom: 50px;
  position: relative;
  height: 750px;
  text-decoration: none;
  margin: 0 auto;
}

.project-item .single-project-item .project-item-inner {
  padding: 50px 0;
  background: #fafafa;
  border-radius: 45px;
  min-width: 415px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255,255,255,0.12);
}

.project-item .single-project-item:hover .project-item-inner {
  transform: translateY(-10px);
}

.project-item .single-project-item .project-item-inner .project-title {
  padding: 20px 60px 0;
}

.project-item .single-project-item .project-item-inner .project-title span,
.project2-item .single-project-item .project-inner .project-title span {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}

.project-item .single-project-item .project-item-inner .project-title h4 {
  font-size: 45px;
  font-weight: 600;
  color: #000;
  transition: .4s;
}

.project-item .single-project-item .img {
  position: relative;
  height: 350px;
  margin-left: -50px;
}

.project-item .single-project-item .throphy {
  position: absolute;
  left: 125px;
  bottom: 90px;
  z-index: 1;
}

.project-item .single-project-item .img .img-item {
  position: absolute;
  width: 430px;
  border-radius: 25px;
  box-shadow: 0 3px 56px 0 rgb(69 81 128 / 16%);
  transform: rotate(-5deg);
  overflow: hidden;
  transition: .4s;
}

.project-item .single-project-item:hover .img .img-item {
  transform: rotate(0deg);
}

.project-item .single-project-item .img .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-item .single-project-item .img .img2 {
  bottom: 0;
  right: -80px;
}

.project-item .single-project-item .button {
  height: 60px;
  background: #1e1e1e;
  padding: 0 60px;
  margin: 20px 60px 0;
  border-radius: 30px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  transition: .4s;
  width: fit-content;
  white-space: nowrap;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
}

.project-item .single-project-item .mobil-button {
  display: none;
}

.project-item .single-project-item:hover .button {
  background: #2e3463;
  color: white;
}

/* Responsive düzenlemeler */
@media (max-width: 1400px) {
  .project-item {
    width: calc(33.333% - 60px);
    min-width: 400px;
  }
}

@media (max-width: 1200px) {
  .project-item {
    width: calc(50% - 40px);
    min-width: 350px;
  }
  
  .project-item .single-project-item {
    max-width: 450px;
    padding-left: 60px;
    height: 700px;
  }
  
  .project-item .single-project-item .project-item-inner .project-title h4 {
    font-size: 38px;
  }
  
  .project-item .single-project-item .img {
    height: 300px;
  }
  
  .project-item .single-project-item .img .img-item {
    width: 380px;
  }
}

@media (max-width: 992px) {
  .project-item {
    width: calc(50% - 30px);
    min-width: 320px;
  }
  
  .project-item .single-project-item {
    max-width: 400px;
    padding-left: 50px;
    height: 650px;
  }
  
  .project-item .single-project-item .project-item-inner .project-title h4 {
    font-size: 32px;
  }
  
  .project-item .single-project-item .img {
    height: 280px;
  }
  
  .project-item .single-project-item .img .img-item {
    width: 350px;
  }
}

@media (max-width: 768px) {

  
  .project-item {
    width: 100%;
    min-width: 300px;
    max-width: 350px;
    padding: 0 15px;
    scroll-snap-align: start;
  }
  
  .project-item .single-project-item {
    width: 100%;
    max-width: 320px;
    padding-left: 30px;
    height: 600px;
  }

  .project-item .single-project-item .project-item-inner .project-title h4 {
    font-size: 28px;
  }

  .project-item .single-project-item .img {
    height: 220px;
  }

  .project-item .single-project-item .img .img-item {
    width: 280px;
  }
  
  .project-item .single-project-item .button {
    display: none;
  }
  
  .project-item .single-project-item .mobil-button {
    display: block;
    height: 50px;
    background: #1e1e1e;
    padding: 0 40px;
    margin: 20px auto 0;
    border-radius: 25px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    transition: .4s;
    width: fit-content;
    white-space: nowrap;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
  }
  
  .project-item .single-project-item:hover .mobil-button {
    background: #2e3463;
    color: white;
  }
}

@media (max-width: 480px) {
  .project-item {
    min-width: 280px;
    max-width: 300px;
  }
  
  .project-item .single-project-item {
    max-width: 280px;
    padding-left: 20px;
    height: 550px;
  }
  
  .project-item .single-project-item .project-item-inner .project-title h4 {
    font-size: 24px;
  }
  
  .project-item .single-project-item .img {
    height: 200px;
  }
  
  .project-item .single-project-item .img .img-item {
    width: 250px;
  }
}

/* Modern Design Enhancements */
/* Scrollbar Styling */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

/* Custom Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Glassmorphism Effects */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient Text Effects */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-animated {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

/* Modern Button Styles */
.btn-modern {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-modern::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;
}

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

/* Card Hover Effects */
.card-modern {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.card-modern:hover {
  transform: translateY(-8px) rotateX(5deg);
}

/* Navigation Pills */
.nav-pill {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.nav-pill:hover::before {
  left: 100%;
}

/* Floating Elements */
.floating {
  animation: float 3s ease-in-out infinite;
}

.floating-delay-1 {
  animation-delay: 0.5s;
}

.floating-delay-2 {
  animation-delay: 1s;
}

/* Gradient Borders */
.gradient-border {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2px;
  border-radius: 12px;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: #0f172a;
  border-radius: 10px;
  z-index: -1;
}

/* Modern Shadows */
.shadow-modern {
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.shadow-glow {
  box-shadow: 
    0 0 20px rgba(59, 130, 246, 0.3),
    0 0 40px rgba(59, 130, 246, 0.1);
}

/* Text Reveal Animation */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  animation: textReveal 0.8s ease forwards;
}

@keyframes textReveal {
  to {
    transform: translateY(0);
  }
}

/* Loading States */
.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
  .card-modern:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .floating {
    animation: none;
  }
  
  .text-reveal span {
    transform: none;
    animation: none;
  }
}

/* ========================================
   REFERANS DETAY SAYFASI STİLLERİ
   ======================================== */

/* Ana Referans Detay Sayfası Stilleri */
.reference-detail-page {
  min-height: 100vh;
  background: #0d1117;
  padding-top: 140px;
  padding-bottom: 80px;
}

.reference-container {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1900px;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: #0ea5e9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #06b6d4;
}

/* Hero Section - Birebir Tasarım */
.hero-section-new {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  align-items: flex-start;
  min-height: 600px;
}

/* Laptop Container */
.laptop-container-new {
  flex: 1;
  max-width: 600px;
}

.laptop-frame {
  position: relative;
  width: 100%;
  background: #2a2a2a;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.laptop-screen {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

/* Website Preview */
.website-preview {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8e24aa 0%, #e91e63 100%);
  position: relative;
}

/* Website Header */
.website-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.nav-left {
  display: flex;
  gap: 20px;
}

.nav-item {
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.parex-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 20px;
}

.logo-icon {
  width: 20px;
  height: 20px;
  background: #2196f3;
  border-radius: 50%;
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.logo-text {
  color: white;
  font-weight: 700;
  font-size: 14px;
}

/* Secondary Navigation */
.website-nav-secondary {
  display: flex;
  gap: 20px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.website-hero {
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 200px;
}

.hero-content-web {
  flex: 1;
  max-width: 60%;
}

.hero-title-web {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-desc-web {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-btn-web {
  background: #8e24aa;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.hero-products {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.product-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.product-label {
  color: white;
  font-size: 10px;
  font-weight: 600;
}

.wondero-box {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 10px;
  border-radius: 15px;
  margin-top: 10px;
}

.wondero-plus {
  color: #8e24aa;
  font-weight: 700;
  font-size: 12px;
}

.wondero-text {
  color: #333;
  font-size: 10px;
  font-weight: 600;
}

/* Bottom Section */
.website-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  border-radius: 0 0 12px 12px;
}

.bottom-text {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.bottom-desc {
  font-size: 12px;
  color: #666;
}

/* Tailwind ile uyumlu ek stiller */
.detail-wrapper {
  flex: 1;
}

.detail-box {
  background: rgba(13, 17, 23, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.custom-page-location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-single-logo-reference {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.custom-scale-sing {
  transition: transform 0.3s ease;
}

.custom-scale-sing:hover {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .detail-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .customer {
    justify-content: flex-start;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-section-new {
    flex-direction: column;
    gap: 40px;
  }
  
  .laptop-container-new {
    max-width: 100%;
  }
  
  .project-detail-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .website-hero {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-content-web {
    max-width: 100%;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  /* Ana container mobil düzeltmeleri */
  .wrapper {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 0 15px !important;
  }
  
  /* Görsel wrapper mobil düzeltmeleri */
  .images-wrapper {
    gap: 40px !important;
  }
  
  /* Computer box mobil düzeltmeleri */
  .computer-box {
    margin-top: 0 !important;
  }
  
  /* Detail box mobil düzeltmeleri */
  .detail-box {
    padding: 30px 20px !important;
  }
  
  /* Comment box mobil düzeltmeleri */
  .comment-box .content {
    padding: 40px 20px !important;
  }
  
  .comment {
    font-size: 18px !important;
    text-align: center !important;
  }
  
  /* Customer section mobil düzeltmeleri */
  .customer {
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px !important;
  }
  
  .split {
    width: 30px !important;
    height: 1px !important;
    margin: 15px 0 !important;
  }
  
  /* Button wrapper mobil düzeltmeleri */
  .button-wrapper {
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .button {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .wrapper {
    padding: 0 10px !important;
  }
  
  .detail-box {
    padding: 20px 15px !important;
  }
  
  .comment-box .content {
    padding: 30px 15px !important;
  }
  
  .comment {
    font-size: 16px !important;
  }
  
  .customer {
    gap: 8px !important;
  }
  
  .naming .name {
    font-size: 18px !important;
  }
  
  .naming .position {
    font-size: 14px !important;
  }
  
  /* Logo boyutu mobilde küçült */
  .custom-single-logo-reference {
    max-width: 180px !important;
    height: auto !important;
  }
  
  /* Text editor başlık mobil düzeltmeleri */
  .text-editor h3 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
  }
  
  /* Detail bar mobil düzeltmeleri */
  .detail-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  
  /* Expo text mobil düzeltmeleri */
  .expo {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
  
  /* Icon list mobil düzeltmeleri */
  .icon-list {
    justify-content: center !important;
  }
  
  /* Tag list mobil düzeltmeleri */
  .tag-list {
    justify-content: center !important;
    gap: 15px !important;
  }
}

/* Hero Section - Eski Tasarım (Gizli) */

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-category {
  display: inline-block;
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #0ea5e9;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* Hero Image */
.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* Content Sections */
.content-section {
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Project Overview */
.overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.overview-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
}

.overview-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.overview-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.project-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.info-value {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

/* Services & Technologies */
.services-tech {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.service-card, .tech-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
}

.service-card h3, .tech-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffffff;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: linear-gradient(to right, #1F2937, #4B5563);
  color: #0ea5e9;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

/* Testimonial */
.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
}

.testimonial-content {
  text-align: center;
}

.quote-icon {
  font-size: 3rem;
  color: #0ea5e9;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author-info {
  text-align: left;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.author-logo .project-logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 20px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Back Button */
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.back-button:hover {
  color: #06b6d4;
  transform: translateX(-4px);
}

/* Related Projects */
.related-projects {
  margin-top: 80px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.related-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.3);
}

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

.related-card-content {
  padding: 20px;
}

.related-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.related-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-tech {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .reference-container {
    padding: 0 16px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-image img {
    height: 300px;
  }
  
  .overview-content, .project-info, .service-card, .tech-card {
    padding: 24px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Loading Animation */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(14, 165, 233, 0.1);
  border-left: 4px solid #0ea5e9;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ========================================
   REFERANS LOGOLARI SAYFASI STİLLERİ
   ======================================== */

.logo-grid-page {
  min-height: 100vh;
  background: #0d1117;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
}

.main-layout {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 24px;
}

/* Sidebar Navigation */
.sidebar {
  width: 320px;
  flex-shrink: 0;
  background: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 160px;
}

.sidebar-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  text-align: center;
}

.all-refs-btn {
  width: 100%;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.all-refs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.all-refs-btn.active {
  background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}

.category-menu {
  list-style: none;
  margin-bottom: 40px;
}

.category-item {
  margin-bottom: 12px;
}

.category-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

.category-btn.active {
  background: rgba(14, 165, 233, 0.15);
  color: #0ea5e9;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.category-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.toggle-section {
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(13, 17, 23, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.toggle-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background: #0ea5e9;
}

.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(28px);
}

/* Main Content */
.main-content {
  flex: 1;
  min-width: 0;
}

.page-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.header-lottie-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250%;
  height: 250%;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.page-header h1,
.page-header .logo-breadcrumb {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  font-weight: 100;
  color: #99afc2 !important;
  margin-bottom: 16px;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-breadcrumb {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.logo-breadcrumb a {
  color: #99afc2 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo-breadcrumb a:hover {
  color: linear-gradient(to right, #1F2937, #4B5563);;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
}

/* Logo Grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 80px;
  border-radius: 16px;
  overflow: hidden;
}

.logo-item {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
}

/* Son sütundaki logolar için sağ border'ı kaldır */
.logo-item:nth-child(4n) {
  border-right: none;
}

/* Son satırdaki logolar için alt border'ı kaldır */
.logo-item:nth-last-child(-n+4) {
  border-bottom: none;
}

.logo-item:hover {
  background: rgba(14, 165, 233, 0.05);
  transform: translateY(-2px);
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.logo-item:hover .logo-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.logo-name {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  transition: color 0.3s ease;
}

.logo-item:hover .logo-name {
  color: #ffffff;
}

/* Referans Logoları Responsive Design */
@media (max-width: 1200px) {
  .main-layout {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    position: static;
    order: 2;
  }
  
  .main-content {
    order: 1;
  }
  
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }
  
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .logo-item {
    padding: 30px;
    min-height: 120px;
  }
  
  .logo-item:nth-child(4n) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .logo-item:nth-child(2n) {
    border-right: none;
  }
  
  .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .logo-name {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }
  
  .logo-item {
    padding: 20px;
    min-height: 100px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .logo-name {
    font-size: 12px;
  }
}

/* Tab Menu */
.tab-menu {
  display: none;
}

/* Circle Animation */
.circle {
  background-color: rgb(169, 28, 142);
  color: initial;
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(700.5px, 460.273px) scale(0, 0);
}

.icon-resize {
  translate: none;
  rotate: none;
  scale: none;
  transform: rotate(54.4945deg);
}

/* Shadow Images */
.shadow-image-8 {
  visibility: visible;
  opacity: 0;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -30, 0, 0, 1);
}

.shadow-image-12 {
  visibility: visible;
  opacity: 0;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 30, 0, 0, 1);
}

/* Detail Box */
.detail-box-static {
  position: static !important;
}

/* Typography */
.project-title {
  font-weight: 500;
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Tags */
.tag-dash {
  color: ghostwhite;
}

/* Buttons */
.review-button-primary {
  background-color: #a91c8e;
}

.review-button-text {
  color: #ffffff;
}

/* ========================================
   MODAL STİLLERİ
   ======================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.modal-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.modal-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #f1f1f1;
  text-align: center;
}

/* References Page Styles */
.references-page {
  min-height: 100vh;
  background: #0d1117;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
}

.main-layout {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 24px;
}

/* Sidebar Navigation */
.sidebar {
  width: 320px;
  flex-shrink: 0;
  background: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 160px;
}

.sidebar-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  text-align: center;
}

.all-refs-btn {
  width: 100%;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.all-refs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.all-refs-btn.active {
  background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}

.category-menu {
  list-style: none;
  margin-bottom: 40px;
}

.category-item {
  margin-bottom: 12px;
}

.category-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

.category-btn.active {
  background: rgba(14, 165, 233, 0.15);
  color: #0ea5e9;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.category-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.toggle-section {
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(13, 17, 23, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.toggle-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.toggle-switch.active {
  background: #0ea5e9;
}

.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(28px);
}

.download-btn {
  width: 100%;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

/* Main Content Area */
.main-content {
  flex: 1;
  min-width: 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
  align-items: stretch;
}

.project-card {
  background: rgba(13, 17, 23, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Laptop Container - Full Image */
.laptop-container {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.laptop-container img {
  width: 200%;
  height: 200%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.project-card:hover .laptop-container img {
  transform: scale(1.05);
}

/* Project Info */
.project-info {
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

.project-category {
  font-size: 12px;
  color: #0ea5e9;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 600;
}

.project-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.project-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.project-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  margin-top: auto;
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* Like/Dislike System */
.project-actions {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
}

.action-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.action-btn.liked {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.action-btn.disliked {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Stats Section */
.stats-section {
  background: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 60px;
  margin-top: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  color: #ffffff;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #0ea5e9;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Logo Grid Mode Styles */
.logo-grid-mode .projects-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  margin-bottom: 80px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  display: grid !important;
  align-items: stretch;
}

.logo-grid-mode .project-card {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
}

/* Son sütundaki kartlar için sağ border'ı kaldır */
.logo-grid-mode .project-card:nth-child(4n) {
  border-right: none;
}

/* Son satırdaki kartlar için alt border'ı kaldır */
.logo-grid-mode .project-card:nth-last-child(-n+4) {
  border-bottom: none;
}

.logo-grid-mode .project-card:hover {
  transform: translateY(-2px);
  background: rgba(14, 165, 233, 0.05);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
}

.logo-grid-mode .laptop-container {
  display: none;
}

.logo-grid-mode .project-info {
  padding: 0;
  text-align: center;
  width: 100%;
}

.logo-grid-mode .project-logo {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  font-size: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.logo-grid-mode .project-card:hover .project-logo {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.logo-grid-mode .project-category {
  display: none;
}

.logo-grid-mode .project-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  text-align: center;
  line-height: 1.2;
}

.logo-grid-mode .project-card:hover .project-title {
  color: #ffffff;
}

.logo-grid-mode .project-description {
  display: none;
}

.logo-grid-mode .project-buttons {
  display: none;
}

.logo-grid-mode .project-actions {
  display: none;
}

/* Logo Grid Responsive */
@media (max-width: 1200px) {
  .logo-grid-mode .projects-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  
  .logo-grid-mode .project-card:nth-child(4n) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .logo-grid-mode .projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .logo-grid-mode .project-card {
    padding: 20px;
    min-height: 100px;
  }
  
  .logo-grid-mode .project-card:nth-child(4n) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .logo-grid-mode .project-card:nth-child(2n) {
    border-right: none;
  }
  
  .logo-grid-mode .project-logo {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .logo-grid-mode .project-title {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logo-grid-mode .projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .logo-grid-mode .project-card {
    padding: 16px;
    min-height: 80px;
  }
  
  .logo-grid-mode .project-logo {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .logo-grid-mode .project-title {
    font-size: 12px;
  }
}

/* References Page Responsive Design */
@media (max-width: 1200px) {
  .main-layout {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    position: static;
    order: 2;
  }
  
  .main-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .main-layout {
    padding: 0 16px;
    gap: 24px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }
  
  .laptop-container {
    height: 250px;
  }
  
  .sidebar {
    padding: 24px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .project-buttons {
    flex-direction: column;
  }
  
  .laptop-container {
    height: 200px;
  }
  
  .project-info {
    padding: 24px;
  }
}

/* ===== SOFT VE TEMİZ SQUARE-BOX-2 TASARIMI ===== */

.square-box-2 {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 100px 80px;
  margin: 80px 0;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.square-box-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(140, 255, 0, 0.03) 0%, rgba(232, 90, 47, 0.03) 100%);
  pointer-events: none;
}

.soft-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.soft-quote {
  margin-bottom: 80px;
}

.quote-text {
  font-size: 2.2rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 20px;
  font-style: italic;
}

.quote-author {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.soft-description {
  margin-bottom: 80px;
}

.soft-description h3 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
}

.soft-description p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.soft-stats {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 80px;
}

.soft-stat {
  text-align: center;
}

.soft-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 200;
  color: #8cff00;
  margin-bottom: 12px;
  line-height: 1;
}

.soft-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.soft-cta {
  margin-top: 60px;
}

.soft-btn {
  display: inline-block;
  background: rgba(140, 255, 0, 0.1);
  color: #8cff00;
  padding: 20px 40px;
  border: 1px solid rgba(140, 255, 0, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.soft-btn:hover {
  background: rgba(140, 255, 0, 0.2);
  border-color: rgba(140, 255, 0, 0.5);
  transform: translateY(-2px);
  color: #8cff00;
}

/* Responsive */
@media (max-width: 1200px) {
  .square-box-2 {
    padding: 80px 60px;
  }
  
  .soft-stats {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .square-box-2 {
    padding: 60px 40px;
    margin: 60px 0;
  }
  
  .quote-text {
    font-size: 1.8rem;
  }
  
  .soft-description h3 {
    font-size: 2rem;
  }
  
  .soft-description p {
    font-size: 1.1rem;
  }
  
  .soft-stats {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .soft-number {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .square-box-2 {
    padding: 40px 20px;
  }
  
  .quote-text {
    font-size: 1.5rem;
  }
  
  .soft-description h3 {
    font-size: 1.8rem;
  }
  
  .soft-description p {
    font-size: 1rem;
  }
  
  .soft-number {
    font-size: 2.5rem;
  }
  
  .soft-btn {
    padding: 16px 32px;
    font-size: 1rem;
  }
}

/* Swiper Styles */
.projectsSwiper {
  padding: 20px 0 60px 0;
  overflow: visible;
}

.projectsSwiper .swiper-button-next,
.projectsSwiper .swiper-button-prev {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  transition: all 0.3s ease;
}

.projectsSwiper .swiper-button-next:hover,
.projectsSwiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.projectsSwiper .swiper-button-next:after,
.projectsSwiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.projectsSwiper .swiper-pagination {
  bottom: 0;
}

.projectsSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.projectsSwiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.projectsSwiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.projectsSwiper .swiper-slide .project-item {
  width: 100%;
  height: 100%;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .projectsSwiper .swiper-button-next,
  .projectsSwiper .swiper-button-prev {
    display: none;
  }
  
  .projectsSwiper {
    padding: 20px 0 40px 0;
  }
}
.lg\:hidden.mt-8.flex.justify-center.samet {
    display: none;
}