/* Global overflow control */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    position: relative;
}

/* About sayfası alt CTA butonları */
.about-cta-btn-primary {
	background: #fff;
	color: #18181b;
	padding: 16px 40px;
	border-radius: 12px;
	font-weight: bold;
	font-size: 1.1rem;
	border: none;
	box-shadow: 0 0 20px rgba(255,255,255,0.2);
	cursor: pointer;
	text-decoration: none;
	transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.about-cta-btn-primary:hover {
	background: #facc15;
	color: #7f13ec;
	box-shadow: 0 0 32px 0 #facc1555;
	transform: scale(1.06);
}
.about-cta-btn-secondary {
	background: transparent;
	color: #fff;
	border: 1px solid #fff2;
	padding: 16px 40px;
	border-radius: 12px;
	font-weight: bold;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s, transform 0.3s;
}
.about-cta-btn-secondary:hover {
	background: #7f13ec;
	color: #fff;
	border: 1px solid #7f13ec;
	box-shadow: 0 0 32px 0 #7f13ec55;
	transform: scale(1.06);
}
/* About sayfası hover efektleri */
.about-btn {
	background: #7f13ec;
	color: #fff;
	padding: 16px 32px;
	border-radius: 16px;
	font-weight: bold;
	font-size: 1rem;
	border: none;
	box-shadow: 0 0 20px rgba(127,19,236,0.18);
	cursor: pointer;
	transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.about-btn:hover {
	background: #6d0ecb;
	color: #facc15;
	box-shadow: 0 0 32px 0 #7f13ec55;
	transform: scale(1.06);
}
.about-card {
	background: rgba(255,255,255,0.03);
	border: 1px solid #2a2633;
	border-radius: 24px;
	padding: 40px 24px;
	min-width: 260px;
	max-width: 340px;
	flex: 1 1 260px;
	transition: background 0.3s, border 0.3s, box-shadow 0.3s, transform 0.3s;
	box-shadow: 0 4px 24px rgba(127, 19, 236, 0.08);
}
.about-card:hover {
	background: rgba(127, 19, 236, 0.08);
	border-color: #7f13ec;
	box-shadow: 0 8px 32px rgba(127, 19, 236, 0.18);
	transform: translateY(-6px) scale(1.03);
}
.about-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: #7f13ec22;
	color: #7f13ec;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	font-size: 2rem;
	transition: background 0.3s, color 0.3s, transform 0.3s;
	text-align: center;
}

.about-card-icon i {
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-card:hover .about-card-icon {
	background: #7f13ec;
	color: #fff;
	transform: scale(1.08);
}
.about-team-img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	filter: grayscale(0.2);
	transition: filter 0.4s, transform 0.4s;
}
.about-team-card:hover .about-team-img {
	filter: grayscale(0) brightness(1.08);
	transform: scale(1.04);
}
/* Footer linkleri ve sosyal medya ikonları için canlı renkler ve hover efektleri */
.footer-link {
	color: #9ca3af !important;
	font-weight: 400;
	letter-spacing: 0.015em;
	transition: color 0.3s ease, transform 0.2s ease;
}
.footer-link:hover {
	color: #d1d5db !important;
	transform: translateX(2px);
}
.footer-social {
	color: #9ca3af !important;
	background: #23222a;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-right: 8px;
	box-shadow: 0 2px 8px #18181b33;
	transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.footer-social:hover {
	background: #fff;
	color: #7f13ec !important;
	box-shadow: 0 4px 16px #7f13ec33;
	transform: scale(1.12);
}
/* CTA Teklif Al butonu hover efekti */
.cta-offer-btn {
	transition: background 0.6s cubic-bezier(.4,0,.2,1), color 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1), box-shadow 0.6s cubic-bezier(.4,0,.2,1);
	text-decoration: none;
}
.cta-offer-btn:hover {
	background-color: #facc15 !important;
	color: #18181b !important;
	transform: scale(1.06);
	box-shadow: 0 0 32px 0 #facc15aa;
}
/* Referans logoları sonsuz döngü slider */
.references-infinite-scroll {
	display: flex;
	align-items: center;
	gap: 48px;
	animation: scroll-infinite 60s linear infinite;
}
.references-infinite-scroll:hover {
	animation-play-state: paused;
}
@keyframes scroll-infinite {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
/* Sadece seçili projeler kısmı için geniş scroll */
.custom-projects-scroll-wide {
	min-width: calc(100vw + 8rem);
	max-width: none;
	width: calc(100vw + 8rem);
	margin-left: -4rem;
	margin-right: -4rem;
	box-sizing: border-box;
	justify-content: flex-start;
	padding-left: 0 !important;
	gap: 3rem;
}
.custom-link {
	color: #facc15;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.5s cubic-bezier(.4,0,.2,1), gap 0.5s cubic-bezier(.4,0,.2,1), text-decoration-color 0.5s cubic-bezier(.4,0,.2,1);
	text-decoration: none;
	font-size: 1rem;
	cursor: pointer;
	background: none;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
}
.custom-link:hover {
	color: #fff200;
	gap: 1.1rem;
	text-decoration: none;
	background: none;
	box-shadow: none;
	transform: none;
}
/* Klasik CSS ile modern kart ve grid düzeni */
.custom-section {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
	margin-bottom: 5rem;
}
.custom-section-header {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.custom-section-header {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}
}
.custom-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 640px) {
	.custom-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.custom-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
.custom-card {
	padding: 2rem;
	border-radius: 1.25rem;
	background: rgba(127, 19, 236, 0.05);
	border: 1px solid rgba(127, 19, 236, 0.15);
	backdrop-filter: blur(12px);
	transition: background 0.3s, border 0.3s, box-shadow 0.3s;
	box-shadow: 0 4px 24px rgba(127, 19, 236, 0.08);
}
.custom-card:hover {
	background: rgba(127, 19, 236, 0.10);
	border-color: #7f13ec;
	box-shadow: 0 8px 32px rgba(127, 19, 236, 0.18);
}
.custom-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 1rem;
	background: rgba(127, 19, 236, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #7f13ec;
	margin-bottom: 1.5rem;
	font-size: 2rem;
	transition: background 0.3s, color 0.3s, transform 0.3s;
}
.custom-card:hover .custom-card-icon {
	background: #7f13ec;
	color: #fff;
	transform: scale(1.08);
}
.custom-card-title {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 0.75rem;
	color: #fff;
}
.custom-card-desc {
	color: #b4bcc4;
	font-size: 1rem;
	line-height: 1.6;
}
.custom-projects-scroll {
	display: flex;
	overflow-x: auto;
	gap: 2rem;
	padding-bottom: 3rem;
	padding-left: 1rem;
	padding-right: 1rem;
	scroll-snap-type: x mandatory;
	min-width: 100vw;
	max-width: none;
	width: 100vw;
	box-sizing: border-box;
}
.custom-project-card {
	flex: 0 0 560px;
	width: 560px;
	height: 360px;
	max-width: none;
	border-radius: 2rem;
	overflow: hidden;
	background: #18181b;
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 4px 24px rgba(0,0,0,0.12);
	position: relative;
	transition: transform 0.4s, box-shadow 0.4s;
	scroll-snap-align: center;
}
.custom-project-card:hover {
	transform: none;
	box-shadow: 0 8px 32px rgba(127, 19, 236, 0.18);
}
.custom-project-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.7s;
	z-index: 1;
}
.custom-project-card:hover .custom-project-bg {
	transform: scale(1.05);
}
.custom-project-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 60%, rgba(0,0,0,0.2) 100%);
	opacity: 0.85;
	z-index: 2;
	transition: opacity 0.3s;
}
.custom-project-card:hover .custom-project-gradient {
	opacity: 1;
}
.custom-project-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2.25rem 1.75rem;
	z-index: 3;
}
.custom-project-category {
	color: #facc15;
	font-size: 0.95rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}
.custom-project-title {
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}
.custom-project-desc {
	color: #b4bcc4;
	font-size: 1rem;
	margin-bottom: 0.5rem;
}
.custom-project-link {
	position: absolute;
	right: 2rem;
	bottom: 2rem;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(24,24,27,0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 2rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
	transition: background 0.3s, color 0.3s, transform 0.2s;
	z-index: 5;
	text-decoration: none;
}
.custom-project-card:hover .custom-project-link {
	background: #facc15;
	color: #18181b;
	transform: scale(1.08);
}
/* site.v2.css: Güncel ve cache sorunu olmayan stil dosyası */
/* --- BAŞLANGIÇ: site.css içeriği --- */
/* Site custom styles for modern agency homepage */
:root {
	--primary: #7f13ec;
	--accent: #facc15;
	--bg-dark: #0f0c13;
}

* {
	scrollbar-width: thin;
	scrollbar-color: rgba(127, 19, 236, 0.5) transparent;
}

*::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

*::-webkit-scrollbar-track {
	background: transparent;
}

*::-webkit-scrollbar-thumb {
	background: rgba(127, 19, 236, 0.5);
	border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
	background: rgba(127, 19, 236, 0.8);
}

html {
	scroll-behavior: smooth;
}

.ambient-glow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	overflow: hidden;
	z-index: -1;
	background-color: #0f0c13;
	pointer-events: none;
}
.glow-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.4;
}
.orb-1 {
	width: 600px;
	height: 600px;
	background: #7f13ec;
	top: -100px;
	left: -100px;
	animation: move1 20s infinite alternate;
}
.orb-2 {
	width: 500px;
	height: 500px;
	background: #5b0fa8;
	bottom: -50px;
	right: -100px;
	animation: move2 25s infinite alternate;
}
.orb-3 {
	width: 300px;
	height: 300px;
	background: #facc15;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.15;
	animation: pulse 10s infinite alternate;
}
@keyframes move1 {
	0% { transform: translate(0, 0); }
	100% { transform: translate(100px, 100px); }
}
@keyframes move2 {
	0% { transform: translate(0, 0); }
	100% { transform: translate(-100px, -50px); }
}
@keyframes pulse {
	0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
	100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
}

/* --- ProjectDetail Responsive CSS --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .outcome-content {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 12;
    }

    .gallery-item.small {
        grid-column: span 6;
    }

    .outcome-section {
        padding: 2rem 2.5rem;
    }

    .hero-info-box {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .project-detail-hero {
        height: 60vh;
    }

    .hero-info-box {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .content-section {
        padding: 0 1rem;
    }

    .content-grid {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .project-gallery {
        gap: 1rem;
        padding: 3rem 0;
    }

    .gallery-item.small {
        grid-column: span 12;
    }

    .outcome-section {
        padding: 1.5rem;
    }

    .next-title {
        font-size: 2rem;
    }
}

/* Mobile Responsive Navbar */
@media (max-width: 991px) {
    .navbar {
        padding: 0.75rem 0 !important;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
    }
    
    .navbar-brand img {
        height: 32px !important;
    }
    
    .navbar-brand span {
        display: none;
    }
    
    .navbar-toggler {
        margin-left: 0 !important;
        flex-shrink: 0;
    }
    
    .navbar .container-xxl {
        justify-content: space-between !important;
    }
    
    /* Logo should not push in mobile */
    .navbar-brand {
        margin-right: 0 !important;
    }
    
    /* Mobile hamburger + language button container */
    .navbar .d-lg-none.d-flex {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .d-none.d-lg-flex {
        display: none !important;
    }
    
    .d-none.d-lg-inline {
        display: none !important;
    }
    
    .d-lg-none {
        display: block !important;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 0 !important;
    }
    
    .navbar-brand {
        font-size: 0.9rem !important;
    }
    
    .navbar-brand img {
        height: 28px !important;
    }
    
    .container-xxl {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .collapse.navbar-collapse {
        top: 55px !important;
    }
}

/* ========================================
   HAMBURGER MENU - TÜM MOBİL VE TABLET EKRANLAR
   992px ALTINDA KAPATILACAK (BOOTSTRAP BREAKPOINT)
   ======================================== */

/* Tüm mobil ve tablet ekranlarda (< 992px) hamburger menü KAPALI başlar */
@media (max-width: 991px) {
    #mobileNav,
    .collapse.d-lg-none {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        max-height: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
        transition: none !important;
    }
    
    /* Sadece .show class'ı olduğunda AÇILIR */
    #mobileNav.show,
    .collapse.d-lg-none.show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: 100vh !important;
        height: auto !important;
        overflow: visible !important;
        pointer-events: auto !important;
        z-index: 1040;
    }
}

/* Tablet yatay - 768px - 991px arası */
@media (min-width: 768px) and (max-width: 991px) {
    #mobileNav:not(.show),
    .collapse.d-lg-none:not(.show) {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        max-height: 0 !important;
        opacity: 0 !important;
    }
}

/* Mobil dikey - 576px - 767px arası */
@media (min-width: 576px) and (max-width: 767px) {
    #mobileNav:not(.show),
    .collapse.d-lg-none:not(.show) {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        max-height: 0 !important;
        opacity: 0 !important;
    }
}

/* Küçük mobil - 576px altı */
@media (max-width: 575px) {
/* Küçük mobil - 576px altı */
@media (max-width: 575px) {
    #mobileNav:not(.show),
    .collapse.d-lg-none:not(.show) {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        max-height: 0 !important;
        opacity: 0 !important;
    }
}

/* Mobile language switcher text centering */
    .navbar .d-lg-none[style*="width: 40px"] {
        padding: 0 !important;
    }
    
    .navbar .d-lg-none[style*="width: 40px"]::after {
        content: attr(data-text);
        display: none;
    }
    
    .nav-link {
        padding: 0.625rem 0.75rem !important;
        font-size: 0.875rem !important;
    }
    
    .btn.btn-sm {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
    }
}

/* Global responsive content defaults */
img,
video,
iframe {
	max-width: 100%;
	height: auto;
}

table {
	width: 100%;
}

.policy-content table {
	display: block;
	overflow-x: auto;
}

.policy-content iframe {
	width: 100%;
}

@media (max-width: 991px) {
	main[style] {
		padding-top: 70px !important;
	}
}

/* Responsive Font Sizes and Spacing */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    h2 {
        font-size: clamp(1.25rem, 3.5vw, 2rem);
    }
    
    h3 {
        font-size: clamp(1.1rem, 3vw, 1.75rem);
    }
    
    p {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }
    
    .container-xxl {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    section {
        padding: 2rem 1rem !important;
    }
}