/*
===========================================
FULL RESPONSIVE CSS - Mobile First Design
Tüm ekran boyutları için optimize edilmiş
===========================================
*/

/* ============================================
   BASE RESPONSIVE SETUP
============================================ */

/* Prevent horizontal scroll */
html, body {
	width: 100%;
	overflow-x: hidden !important;
	-webkit-text-size-adjust: 100% !important;
	-ms-text-size-adjust: 100% !important;
}

img, video, iframe {
	max-width: 100% !important;
	height: auto !important;
}

/* Touch optimization */
body {
	-webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
	-webkit-touch-callout: none !important;
}

a, button {
	-webkit-tap-highlight-color: rgba(0,102,204,0.2) !important;
	touch-action: manipulation !important;
}

/* Smooth scrolling on iOS */
body {
	-webkit-overflow-scrolling: touch !important;
}

/* Container responsive - FIXED */
.container {
	width: 100% !important;
	padding-left: 15px !important;
	padding-right: 15px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px !important;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px !important;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px !important;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px !important;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1320px !important;
	}
}

/* ============================================
   MOBILE FIRST - BASE (< 576px)
============================================ */

/* Typography Mobile */
body {
	font-size: 14px !important;
}

h1 {
	font-size: 1.75rem !important;
	line-height: 1.2 !important;
}

h2 {
	font-size: 1.5rem !important;
	line-height: 1.3 !important;
}

h3 {
	font-size: 1.25rem !important;
	line-height: 1.3 !important;
}

h4 {
	font-size: 1.1rem !important;
}

h5 {
	font-size: 1rem !important;
}

h6 {
	font-size: 0.95rem !important;
}

p {
	font-size: 0.95rem !important;
	line-height: 1.6 !important;
}

/* Buttons Mobile */
.btn,
.btn-corporate,
.btn-accent {
	padding: 10px 20px !important;
	font-size: 0.9rem !important;
	width: 100% !important;
	justify-content: center !important;
}

.btn-group {
	flex-direction: column !important;
	gap: 0.75rem !important;
}

.btn-group .btn {
	width: 100% !important;
}

/* Grid Mobile */
.row {
	display: flex !important;
	flex-wrap: wrap !important;
	margin-left: -15px !important;
	margin-right: -15px !important;
}

[class*="col-"] {
	position: relative !important;
	width: 100% !important;
	padding-left: 15px !important;
	padding-right: 15px !important;
}

/* Header Mobile */
.top-bar-head {
	display: none !important;
}

.header-area {
	padding: 10px 0 !important;
}

.logo-area img {
	max-height: 40px !important;
}

/* ========================================
   MOBILE NAVIGATION - CRITICAL FIX
   ======================================== */

/* Desktop navlink'leri mobile'da TAMAMEN GİZLE */
@media (max-width: 991px) {
	.desktop-menu,
	.navigation.desktop-menu,
	.mainmenu,
	nav.desktop-menu ul,
	nav.desktop-menu ul li,
	nav.desktop-menu ul li a {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
		position: absolute !important;
		left: -9999px !important;
		width: 0 !important;
		height: 0 !important;
	}
}

/* Hamburger Menu Toggle Button */
.mobile-menu-toggle {
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-around !important;
	align-items: center !important;
	width: 40px !important;
	height: 40px !important;
	background: transparent !important;
	border: none !important;
	cursor: pointer !important;
	padding: 8px !important;
	z-index: 100 !important;
	position: relative !important;
	transition: all 0.3s ease !important;
}

.mobile-menu-toggle:hover {
	background: rgba(0,102,204,0.1) !important;
	border-radius: 8px !important;
}

.mobile-menu-toggle .bar {
	width: 30px !important;
	height: 3px !important;
	background: #0066cc !important;
	border-radius: 3px !important;
	transition: all 0.3s ease !important;
	display: block !important;
}

/* Hamburger Animation when Active */
.mobile-menu-toggle.active .bar:nth-child(1) {
	transform: translateY(9px) rotate(45deg) !important;
}

.mobile-menu-toggle.active .bar:nth-child(2) {
	opacity: 0 !important;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg) !important;
}

/* Mobile Navigation Menu - DEFAULT GİZLİ */
#mainNavigation {
	display: none !important;
}

#mainNavigation.show {
	display: block !important;
}

.mobile-nav {
	display: none !important;
	width: 100% !important;
	background: white !important;
	border-top: 2px solid #f0f0f0 !important;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
	padding: 1rem 0 !important;
	position: relative !important;
	z-index: 99 !important;
}

/* Hamburger'e tıklayınca mobile-nav AÇILIR */
#mainNavigation.show .mobile-nav {
	display: block !important;
}

.mobile-nav ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.mobile-nav ul li {
	margin-bottom: 0 !important;
	border-bottom: 1px solid #f0f0f0 !important;
}

.mobile-nav ul li a {
	display: block !important;
	padding: 15px 20px !important;
	color: #1a1a1a !important;
	font-size: 1.1rem !important;
	font-weight: 500 !important;
}

.mobile-nav ul li a:hover {
	background: #f8f9fa !important;
	color: #0066cc !important;
}

/* Hero Section Mobile */
.hero-section,
.slider-area {
	padding: 30px 0 !important;
	min-height: auto !important;
	text-align: center !important;
}

.hero-content {
	text-align: center !important;
}

.hero-section h1,
.slider-content h1 {
	font-size: 1.75rem !important;
	margin-bottom: 1rem !important;
	line-height: 1.2 !important;
}

.hero-section p,
.slider-content p {
	font-size: 1rem !important;
	margin-bottom: 1.5rem !important;
	line-height: 1.6 !important;
}

.hero-badge {
	font-size: 0.85rem !important;
	padding: 6px 12px !important;
	margin-bottom: 1rem !important;
}

.hero-features {
	justify-content: center !important;
}

.hero-section .btn,
.hero-section .btn-corporate,
.hero-section .btn-accent {
	width: 100% !important;
	margin-bottom: 0.75rem !important;
}

.hero-section .d-flex {
	flex-direction: column !important;
	align-items: center !important;
	width: 100% !important;
}

/* Cards Mobile */
.card,
.card-corporate,
.service-card,
.feature-item {
	margin-bottom: 1.5rem !important;
	padding: 1.5rem !important;
}

.card-icon,
.feature-icon,
.service-icon-large {
	width: 60px !important;
	height: 60px !important;
	margin-bottom: 1rem !important;
}

.card-icon i,
.feature-icon i,
.service-icon-large i {
	font-size: 1.8rem !important;
}

/* Sections Mobile */
section {
	padding: 2rem 0 !important;
}

.section-title-modern h2 {
	font-size: 1.5rem !important;
	margin-bottom: 0.75rem !important;
}

.section-title-modern .subtitle {
	font-size: 0.9rem !important;
}

/* Footer Mobile */
.footer-area {
	padding: 2rem 0 !important;
}

.footer-widget {
	margin-bottom: 2rem !important;
}

.footer-widget h3 {
	font-size: 1.1rem !important;
	margin-bottom: 1rem !important;
}

.footer-contact li,
.footer-links li {
	font-size: 0.9rem !important;
	margin-bottom: 0.75rem !important;
}

/* WhatsApp Float Mobile */
.whatsapp-float {
	width: 50px !important;
	height: 50px !important;
	bottom: 20px !important;
	right: 20px !important;
}

.whatsapp-float i {
	font-size: 24px !important;
}

/* Tables Mobile */
table {
	display: block !important;
	overflow-x: auto !important;
	-webkit-overflow-scrolling: touch !important;
}

/* Forms Mobile */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
	width: 100% !important;
	padding: 12px !important;
	font-size: 1rem !important;
	margin-bottom: 1rem !important;
}

/* Contact Items Mobile */
.contact-item {
	flex-direction: column !important;
	text-align: center !important;
	padding: 1.5rem 1rem !important;
}

.contact-item i {
	margin-bottom: 0.75rem !important;
}

/* Service Areas Mobile */
.service-area-card {
	padding: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}

/* CTA Box Mobile */
.cta-box {
	padding: 2rem 1rem !important;
	text-align: center !important;
}

.cta-box h2 {
	font-size: 1.5rem !important;
}

.cta-box .d-flex {
	flex-direction: column !important;
	gap: 1rem !important;
}

/* Breadcrumb Mobile */
.breadcrumb-modern {
	font-size: 0.85rem !important;
	flex-wrap: wrap !important;
}

/* Stats/Numbers Mobile */
.stat-card,
.counter-box {
	text-align: center !important;
	margin-bottom: 1.5rem !important;
}

/* ============================================
   TABLET - SM (≥ 576px)
============================================ */

@media (min-width: 576px) {
	body {
		font-size: 15px !important;
	}
	
	h1 {
		font-size: 2rem !important;
	}
	
	h2 {
		font-size: 1.75rem !important;
	}
	
	.btn,
	.btn-corporate,
	.btn-accent {
		width: auto !important;
		padding: 10px 24px !important;
	}
	
	.btn-group {
		flex-direction: row !important;
	}
	
	.btn-group .btn {
		width: auto !important;
	}
	
	.hero-section h1 {
		font-size: 2.25rem !important;
	}
	
	.col-sm-6 {
		width: 50% !important;
	}
	
	.col-sm-4 {
		width: 33.333333% !important;
	}
	
	.col-sm-3 {
		width: 25% !important;
	}
	
	.col-sm-12 {
		width: 100% !important;
	}
}

/* ============================================
   TABLET - MD (≥ 768px)
============================================ */

@media (min-width: 768px) {
	body {
		font-size: 16px !important;
	}
	
	h1 {
		font-size: 2.5rem !important;
	}
	
	h2 {
		font-size: 2rem !important;
	}
	
	h3 {
		font-size: 1.5rem !important;
	}
	
	p {
		font-size: 1rem !important;
	}
	
	/* Show top bar on tablet */
	.top-bar-head {
		display: block !important;
	}
	
	/* Header */
	.header-area {
		padding: 15px 0 !important;
	}
	
	.logo-area img {
		max-height: 50px !important;
	}
	
	/* Hero */
	.hero-section,
	.slider-area {
		padding: 60px 0 !important;
		min-height: 400px !important;
	}
	
	.hero-section h1 {
		font-size: 2.5rem !important;
	}
	
	/* Buttons */
	.btn,
	.btn-corporate,
	.btn-accent {
		padding: 12px 32px !important;
		font-size: 1rem !important;
	}
	
	/* Cards */
	.card-icon,
	.feature-icon,
	.service-icon-large {
		width: 70px !important;
		height: 70px !important;
	}
	
	.card-icon i,
	.feature-icon i {
		font-size: 2rem !important;
	}
	
	/* Sections */
	section {
		padding: 3rem 0 !important;
	}
	
	.section-title-modern h2 {
		font-size: 2rem !important;
	}
	
	/* Grid */
	.col-md-6 {
		width: 50% !important;
	}
	
	.col-md-4 {
		width: 33.333333% !important;
	}
	
	.col-md-3 {
		width: 25% !important;
	}
	
	.col-md-8 {
		width: 66.666667% !important;
	}
	
	.col-md-12 {
		width: 100% !important;
	}
	
	/* Contact items back to row */
	.contact-item {
		flex-direction: row !important;
		text-align: left !important;
		padding: 1rem !important;
	}
	
	.contact-item i {
		margin-bottom: 0 !important;
	}
	
	/* Footer */
	.footer-area {
		padding: 3rem 0 !important;
	}
	
	/* CTA Box */
	.cta-box {
		padding: 3rem 2rem !important;
	}
	
	.cta-box .d-flex {
		flex-direction: row !important;
	}
}

/* ============================================
   DESKTOP - LG (≥ 992px)
============================================ */

@media (min-width: 992px) {
	h1 {
		font-size: 3rem !important;
	}
	
	h2 {
		font-size: 2.25rem !important;
	}
	
	/* Hero */
	.hero-section,
	.slider-area {
		padding: 80px 0 !important;
		min-height: 500px !important;
	}
	
	.hero-section h1 {
		font-size: 3rem !important;
	}
	
	/* Cards */
	.card-icon,
	.feature-icon,
	.service-icon-large {
		width: 80px !important;
		height: 80px !important;
	}
	
	.card-icon i,
	.feature-icon i,
	.service-icon-large i {
		font-size: 2.5rem !important;
	}
	
	/* Sections */
	section {
		padding: 4rem 0 !important;
	}
	
	.section-title-modern h2 {
		font-size: 2.5rem !important;
	}
	
	/* Grid */
	.col-lg-6 {
		width: 50% !important;
	}
	
	.col-lg-4 {
		width: 33.333333% !important;
	}
	
	.col-lg-3 {
		width: 25% !important;
	}
	
	.col-lg-8 {
		width: 66.666667% !important;
	}
	
	.col-lg-12 {
		width: 100% !important;
	}
	
	/* WhatsApp */
	.whatsapp-float {
		width: 60px !important;
		height: 60px !important;
		bottom: 30px !important;
		right: 30px !important;
	}
	
	.whatsapp-float i {
		font-size: 30px !important;
	}
}

/* ============================================
   LARGE DESKTOP - XL (≥ 1200px)
============================================ */

@media (min-width: 1200px) {
	h1 {
		font-size: 3.5rem !important;
	}
	
	h2 {
		font-size: 2.75rem !important;
	}
	
	.hero-section,
	.slider-area {
		padding: 100px 0 !important;
		min-height: 600px !important;
	}
	
	.hero-section h1 {
		font-size: 3.5rem !important;
	}
	
	section {
		padding: 5rem 0 !important;
	}
	
	.col-xl-6 {
		width: 50% !important;
	}
	
	.col-xl-4 {
		width: 33.333333% !important;
	}
	
	.col-xl-3 {
		width: 25% !important;
	}
}

/* ============================================
   EXTRA LARGE - XXL (≥ 1400px)
============================================ */

@media (min-width: 1400px) {
	.container {
		max-width: 1320px !important;
	}
	
	h1 {
		font-size: 4rem !important;
	}
	
	.hero-section h1 {
		font-size: 4rem !important;
	}
}

/* ============================================
   LANDSCAPE MODE (Mobile/Tablet)
============================================ */

@media (max-height: 600px) and (orientation: landscape) {
	.hero-section,
	.slider-area {
		padding: 30px 0 !important;
		min-height: auto !important;
	}
	
	.hero-section h1 {
		font-size: 1.75rem !important;
	}
	
	section {
		padding: 2rem 0 !important;
	}
	
	.mobile-nav {
		padding: 60px 20px 20px !important;
	}
}

/* ============================================
   UTILITY RESPONSIVE CLASSES
============================================ */

/* Display utilities */
.d-none-mobile {
	display: none !important;
}

@media (min-width: 768px) {
	.d-none-mobile {
		display: block !important;
	}
	
	.d-md-none {
		display: none !important;
	}
	
	.d-md-block {
		display: block !important;
	}
	
	.d-md-flex {
		display: flex !important;
	}
}

@media (min-width: 992px) {
	.d-lg-none {
		display: none !important;
	}
	
	.d-lg-block {
		display: block !important;
	}
	
	.d-lg-flex {
		display: flex !important;
	}
}

/* Text alignment responsive */
.text-center-mobile {
	text-align: center !important;
}

@media (min-width: 768px) {
	.text-md-start {
		text-align: left !important;
	}
	
	.text-md-end {
		text-align: right !important;
	}
	
	.text-center-mobile {
		text-align: left !important;
	}
}

/* Spacing responsive */
@media (max-width: 767px) {
	.mb-mobile-2 {
		margin-bottom: 1rem !important;
	}
	
	.mt-mobile-2 {
		margin-top: 1rem !important;
	}
	
	.p-mobile-2 {
		padding: 1rem !important;
	}
}

/* ============================================
   PRINT STYLES
============================================ */

@media print {
	.top-bar-head,
	.header-area,
	.footer-area,
	.whatsapp-float,
	.mobile-menu-toggle,
	.cta-box {
		display: none !important;
	}
	
	body {
		font-size: 12pt !important;
	}
	
	a {
		text-decoration: underline !important;
	}
}

