/*
===========================================
BUTTON COLORS FIX - ALL !important
Tüm buton renkleri ve stilleri
===========================================
*/

/* Primary Corporate Buttons */
.btn-corporate,
button.btn-corporate,
a.btn-corporate,
input[type="submit"].btn-corporate {
	background: linear-gradient(135deg, #0066cc, #003d7a) !important;
	color: white !important;
	padding: 12px 32px !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem !important;
	transition: all 0.3s ease !important;
	border: none !important;
	box-shadow: 0 4px 12px rgba(0,102,204,0.3) !important;
	cursor: pointer !important;
	font-size: 1rem !important;
	line-height: 1.5 !important;
}

.btn-corporate:hover,
button.btn-corporate:hover,
a.btn-corporate:hover {
	background: linear-gradient(135deg, #003d7a, #0066cc) !important;
	color: white !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 16px rgba(0,102,204,0.4) !important;
	text-decoration: none !important;
}

.btn-corporate:active {
	transform: translateY(0) !important;
}

/* Accent Buttons */
.btn-accent,
button.btn-accent,
a.btn-accent {
	background: linear-gradient(135deg, #ff6b00, #ff8534) !important;
	color: white !important;
	padding: 12px 32px !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem !important;
	transition: all 0.3s ease !important;
	border: none !important;
	box-shadow: 0 4px 12px rgba(255,107,0,0.3) !important;
	cursor: pointer !important;
	font-size: 1rem !important;
	line-height: 1.5 !important;
}

.btn-accent:hover,
button.btn-accent:hover,
a.btn-accent:hover {
	background: linear-gradient(135deg, #ff8534, #ff6b00) !important;
	color: white !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 16px rgba(255,107,0,0.4) !important;
	text-decoration: none !important;
}

.btn-accent:active {
	transform: translateY(0) !important;
}

/* Outline Buttons */
.btn-corporate-outline,
button.btn-corporate-outline,
a.btn-corporate-outline {
	background: transparent !important;
	color: #0066cc !important;
	padding: 12px 32px !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem !important;
	transition: all 0.3s ease !important;
	border: 2px solid #0066cc !important;
	cursor: pointer !important;
	font-size: 1rem !important;
	line-height: 1.5 !important;
}

.btn-corporate-outline:hover,
button.btn-corporate-outline:hover,
a.btn-corporate-outline:hover {
	background: #0066cc !important;
	color: white !important;
	transform: translateY(-2px) !important;
	text-decoration: none !important;
}

/* WhatsApp Buttons */
.btn-whatsapp,
a[href*="wa.me"],
a[href*="whatsapp"] {
	background: #25d366 !important;
	color: white !important;
	padding: 12px !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem !important;
	transition: all 0.3s ease !important;
	border: none !important;
	box-shadow: 0 4px 12px rgba(37,211,102,0.3) !important;
	cursor: pointer !important;
}

.btn-whatsapp:hover,
a[href*="wa.me"]:hover,
a[href*="whatsapp"]:hover {
	background: #128c7e !important;
	color: white !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 16px rgba(37,211,102,0.4) !important;
	text-decoration: none !important;
}

/* Phone Buttons */
.btn-phone,
a[href^="tel:"].btn-corporate,
a[href^="tel:"].btn {
	background: linear-gradient(135deg, #0066cc, #003d7a) !important;
	color: white !important;
	text-decoration: none !important;
}

.btn-phone:hover,
a[href^="tel:"].btn-corporate:hover,
a[href^="tel:"].btn:hover {
	background: linear-gradient(135deg, #003d7a, #0066cc) !important;
	color: white !important;
	text-decoration: none !important;
}

/* Success/Green Buttons */
.btn-success {
	background: linear-gradient(135deg, #28a745, #218838) !important;
	color: white !important;
	padding: 12px 32px !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem !important;
	transition: all 0.3s ease !important;
	border: none !important;
	box-shadow: 0 4px 12px rgba(40,167,69,0.3) !important;
	cursor: pointer !important;
}

.btn-success:hover {
	background: linear-gradient(135deg, #218838, #1e7e34) !important;
	color: white !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 16px rgba(40,167,69,0.4) !important;
}

/* Warning/Orange Buttons */
.btn-warning {
	background: linear-gradient(135deg, #ffc107, #ff9800) !important;
	color: #1a1a1a !important;
	padding: 12px 32px !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem !important;
	transition: all 0.3s ease !important;
	border: none !important;
	box-shadow: 0 4px 12px rgba(255,193,7,0.3) !important;
	cursor: pointer !important;
}

.btn-warning:hover {
	background: linear-gradient(135deg, #ff9800, #f57c00) !important;
	color: white !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 16px rgba(255,193,7,0.4) !important;
}

/* Danger/Red Buttons */
.btn-danger {
	background: linear-gradient(135deg, #dc3545, #c82333) !important;
	color: white !important;
	padding: 12px 32px !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem !important;
	transition: all 0.3s ease !important;
	border: none !important;
	box-shadow: 0 4px 12px rgba(220,53,69,0.3) !important;
	cursor: pointer !important;
}

.btn-danger:hover {
	background: linear-gradient(135deg, #c82333, #bd2130) !important;
	color: white !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 16px rgba(220,53,69,0.4) !important;
}

/* Light/White Buttons */
.btn-light {
	background: white !important;
	color: #0066cc !important;
	padding: 12px 32px !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem !important;
	transition: all 0.3s ease !important;
	border: 2px solid #e0e0e0 !important;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
	cursor: pointer !important;
}

.btn-light:hover {
	background: #f8f9fa !important;
	color: #003d7a !important;
	transform: translateY(-2px) !important;
	border-color: #0066cc !important;
}

/* Dark/Black Buttons */
.btn-dark {
	background: linear-gradient(135deg, #343a40, #23272b) !important;
	color: white !important;
	padding: 12px 32px !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem !important;
	transition: all 0.3s ease !important;
	border: none !important;
	box-shadow: 0 4px 12px rgba(52,58,64,0.3) !important;
	cursor: pointer !important;
}

.btn-dark:hover {
	background: linear-gradient(135deg, #23272b, #1d2124) !important;
	color: white !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 16px rgba(52,58,64,0.4) !important;
}

/* Button Sizes */
.btn-sm,
.btn-corporate.btn-sm,
.btn-accent.btn-sm {
	padding: 8px 20px !important;
	font-size: 0.875rem !important;
}

.btn-lg,
.btn-corporate.btn-lg,
.btn-accent.btn-lg {
	padding: 16px 40px !important;
	font-size: 1.125rem !important;
}

/* Full Width Buttons */
.btn-block {
	width: 100% !important;
	display: flex !important;
}

/* Disabled Buttons */
.btn-corporate:disabled,
.btn-accent:disabled,
button:disabled,
.btn-corporate.disabled,
.btn-accent.disabled {
	opacity: 0.6 !important;
	cursor: not-allowed !important;
	transform: none !important;
	pointer-events: none !important;
}

/* Button Groups */
.btn-group {
	display: inline-flex !important;
	gap: 0.5rem !important;
	flex-wrap: wrap !important;
}

/* Icon in buttons alignment */
.btn-corporate i,
.btn-accent i,
.btn i,
button i {
	margin: 0 !important;
	font-size: 1.1em !important;
}

/* Responsive button sizing */
@media (max-width: 768px) {
	.btn-corporate,
	.btn-accent,
	.btn {
		padding: 10px 24px !important;
		font-size: 0.95rem !important;
	}
	
	.btn-lg {
		padding: 14px 32px !important;
		font-size: 1rem !important;
	}
	
	.btn-sm {
		padding: 6px 16px !important;
		font-size: 0.8rem !important;
	}
}

