
/* ansayfa hizmetler */
	* {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
	}

	.services-section {
		padding: 120px 0;
		background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
		position: relative;
		overflow: hidden;
	}

	/* Decorative Background */
	.services-decoration {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		overflow: hidden;
	}

	.deco-circle {
		position: absolute;
		border-radius: 50%;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent 70%);
		opacity: 0.08;
		animation: float 20s ease-in-out infinite;
	}

	.deco-1 {
		width: 600px;
		height: 600px;
		top: -200px;
		right: -200px;
		animation-delay: 0s;
	}

	.deco-2 {
		width: 400px;
		height: 400px;
		bottom: -100px;
		left: -100px;
		animation-delay: 7s;
	}

	.deco-3 {
		width: 500px;
		height: 500px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		animation-delay: 14s;
	}

	@keyframes float {
		0%, 100% { transform: translate(0, 0) scale(1); }
		25% { transform: translate(30px, -30px) scale(1.05); }
		50% { transform: translate(-20px, 20px) scale(0.95); }
		75% { transform: translate(20px, 30px) scale(1.02); }
	}

	/* Header */
	.services-header {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 30px;
		margin-bottom: 80px;
		text-align: center;
		animation: fadeInDown 0.8s ease-out;
		position: relative;
		z-index: 1;
	}

	.header-line {
		flex: 1;
		max-width: 300px;
		height: 4px;
		background: linear-gradient(90deg, transparent, var(--theme-primary, #6366f1), transparent);
		border-radius: 10px;
		position: relative;
		overflow: hidden;
	}

	.header-line::after {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
		animation: shimmer 3s infinite;
	}

	@keyframes shimmer {
		0% { left: -100%; }
		100% { left: 100%; }
	}

	.section-title {
		font-size: 52px;
		font-weight: 900;
		color: var(--theme-primary, #6366f1);
		letter-spacing: -2px;
		white-space: nowrap;
		text-transform: uppercase;
		display: flex;
		align-items: center;
		gap: 15px;
		text-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	}

	.section-title i {
		animation: sparkle 2s ease-in-out infinite;
	}

	@keyframes sparkle {
		0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
		50% { transform: rotate(180deg) scale(1.2); opacity: 0.8; }
	}

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

	/* Grid */
	.services-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 35px;
		margin-bottom: 80px;
		position: relative;
		z-index: 1;
	}

	.service-item {
		animation: slideInUp 0.6s ease-out forwards;
		opacity: 0;
	}

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

	/* Service Card */
	.service-card {
		background: #ffffff;
		border-radius: 28px;
		overflow: hidden;
		border: 2px solid #e8e8e8;
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
		display: flex;
		flex-direction: column;
		height: 100%;
		cursor: pointer;
		position: relative;
		transform-style: preserve-3d;
	}

	.service-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, transparent 100%);
		opacity: 0;
		transition: opacity 0.4s ease;
		z-index: 1;
		pointer-events: none;
		border-radius: 28px;
	}

	.service-card:hover {
		border-color: var(--theme-primary, #6366f1);
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
		transform: translateY(-15px) scale(1.02);
	}

	.service-card:hover::before {
		opacity: 0.05;
	}

	/* Image Container */
	.service-image-container {
		position: relative;
		width: 100%;
		height: 280px;
		overflow: hidden;
		background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
	}

	.service-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.service-card:hover .service-image {
		transform: scale(1.15) rotate(3deg);
		filter: brightness(1.1);
	}

	.service-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, rgba(0, 0, 0, 0.5) 100%);
		opacity: 0;
		transition: opacity 0.4s ease;
		z-index: 1;
	}

	.service-card:hover .service-overlay {
		opacity: 0.3;
	}

	.service-badge {
		position: absolute;
		top: 20px;
		right: 20px;
		width: 60px;
		height: 60px;
		background: var(--theme-primary, #6366f1);
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 24px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		z-index: 2;
		animation: pulse 2s ease-in-out infinite;
	}

	@keyframes pulse {
		0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
		50% { transform: scale(1.1); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); }
	}

	/* Content */
	.service-content {
		padding: 32px;
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 14px;
		position: relative;
		z-index: 2;
	}

	.service-category {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 8px 16px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 50px;
		font-size: 12px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		width: fit-content;
		box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
	}

	.service-title {
		font-size: 22px;
		font-weight: 800;
		color: #1a1a1a;
		margin: 0;
		line-height: 1.3;
		transition: color 0.3s ease;
	}

	.service-card:hover .service-title {
		color: var(--theme-primary, #6366f1);
	}

	.service-text {
		font-size: 15px;
		color: #666;
		margin: 0;
		line-height: 1.7;
		flex: 1;
	}

	.service-actions {
		display: flex;
		gap: 12px;
		align-items: center;
		margin-top: 10px;
	}

	.service-btn {
		flex: 1;
		padding: 14px 20px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border: none;
		border-radius: 14px;
		font-weight: 700;
		font-size: 14px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-transform: uppercase;
		letter-spacing: 0.5px;
		box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
		position: relative;
		overflow: hidden;
	}

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

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

	.service-btn:hover {
		gap: 14px;
		transform: scale(1.05);
		box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
	}

	.service-btn span,
	.service-btn i {
		position: relative;
		z-index: 1;
	}

	.service-link {
		width: 50px;
		height: 50px;
		background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
		color: var(--theme-primary, #6366f1);
		border-radius: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 18px;
		text-decoration: none;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		border: 2px solid #e8e8e8;
	}

	.service-link:hover {
		background: var(--theme-primary, #6366f1);
		color: white;
		transform: scale(1.1) rotate(10deg);
		border-color: var(--theme-primary, #6366f1);
		box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
	}

	/* Modal */
	.custom-modal {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.custom-modal.active {
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 1;
	}

	.modal-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.6);
		backdrop-filter: blur(8px);
		cursor: pointer;
	}

	.modal-content-wrapper {
		position: relative;
		z-index: 10000;
		width: 90%;
		max-width: 1100px;
		max-height: 90vh;
		overflow: hidden;
		animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	@keyframes modalSlideIn {
		from {
			opacity: 0;
			transform: scale(0.8) translateY(50px);
		}
		to {
			opacity: 1;
			transform: scale(1) translateY(0);
		}
	}

	.modal-body-custom {
		display: grid;
		grid-template-columns: 45% 55%;
		gap: 0;
		background: white;
		border-radius: 32px;
		overflow: hidden;
		box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
	}

	.modal-left {
		position: relative;
		overflow: hidden;
		background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
	}

	.modal-image-wrapper {
		position: relative;
		width: 100%;
		height: 100%;
		min-height: 550px;
	}

	.modal-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.8s ease;
	}

	.custom-modal.active .modal-image {
		transform: scale(1.05);
	}

	.modal-image-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, rgba(0, 0, 0, 0.5) 100%);
		opacity: 0.2;
	}

	.modal-label {
		position: absolute;
		bottom: 35px;
		left: 35px;
		background: var(--theme-primary, #6366f1);
		color: white;
		padding: 14px 28px;
		border-radius: 50px;
		font-weight: 700;
		font-size: 15px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		display: flex;
		align-items: center;
		gap: 10px;
		animation: slideInLeft 0.6s ease-out 0.2s backwards;
	}

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

	.modal-right {
		background: white;
		padding: 55px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		position: relative;
		overflow-y: auto;
		max-height: 90vh;
	}

	.modal-right::-webkit-scrollbar {
		width: 8px;
	}

	.modal-right::-webkit-scrollbar-track {
		background: #f1f1f1;
		border-radius: 10px;
	}

	.modal-right::-webkit-scrollbar-thumb {
		background: var(--theme-primary, #6366f1);
		border-radius: 10px;
	}

	.close-modal {
		position: absolute;
		top: 25px;
		right: 25px;
		width: 55px;
		height: 55px;
		background: #f8f9fa;
		border: 2px solid #e8e8e8;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		font-size: 24px;
		color: var(--theme-primary, #6366f1);
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		padding: 0;
	}

	.close-modal:hover {
		background: var(--theme-primary, #6366f1);
		color: white;
		border-color: var(--theme-primary, #6366f1);
		transform: rotate(90deg) scale(1.1);
		box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
	}

	.modal-header-badge {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 10px 20px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 50px;
		font-size: 12px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		margin-bottom: 20px;
		width: fit-content;
		box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
	}

	.modal-content-wrapper-inner {
		flex: 1;
	}

	.modal-main-title {
		font-size: 36px;
		font-weight: 900;
		color: #1a1a1a;
		margin: 0 0 20px 0;
		line-height: 1.2;
		letter-spacing: -1px;
	}

	.modal-divider {
		width: 80px;
		height: 5px;
		background: var(--theme-primary, #6366f1);
		border-radius: 10px;
		margin-bottom: 30px;
		position: relative;
		overflow: hidden;
	}

	.modal-divider::after {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
		animation: shimmer 2s infinite;
	}

	.modal-description {
		font-size: 16px;
		color: #666;
		line-height: 1.9;
		margin-bottom: 35px;
	}

	/* Contact Section */
	.contact-section {
		margin-bottom: 35px;
		padding: 30px;
		background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
		border-radius: 20px;
		border: 2px solid #e8e8e8;
	}

	.contact-title {
		font-size: 16px;
		font-weight: 800;
		color: #1a1a1a;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin-bottom: 20px;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.contact-title i {
		color: var(--theme-primary, #6366f1);
		font-size: 20px;
	}

	.contact-methods {
		display: flex;
		flex-direction: column;
		gap: 14px;
	}

	.contact-item {
		display: flex;
		align-items: center;
		gap: 18px;
		padding: 20px 24px;
		background: white;
		border-radius: 18px;
		text-decoration: none;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		border: 2px solid #e8e8e8;
		cursor: pointer;
		color: inherit;
		position: relative;
		overflow: hidden;
	}

	.contact-item::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		transition: left 0.4s ease;
		z-index: 0;
	}

	.phone-item::before {
		background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
	}

	.whatsapp-item::before {
		background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	}

	.contact-item > * {
		position: relative;
		z-index: 1;
	}

	.contact-item:hover::before {
		left: 0;
	}

	.phone-item:hover {
		border-color: #ff4757;
		color: white;
		box-shadow: 0 12px 35px rgba(255, 71, 87, 0.3);
		transform: translateX(10px);
	}

	.whatsapp-item:hover {
		border-color: #25d366;
		color: white;
		box-shadow: 0 12px 35px rgba(37, 211, 102, 0.3);
		transform: translateX(10px);
	}

	.contact-icon {
		width: 50px;
		height: 50px;
		background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 22px;
		flex-shrink: 0;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		border: 2px solid #e8e8e8;
	}

	.phone-item .contact-icon {
		color: #ff4757;
	}

	.whatsapp-item .contact-icon {
		color: #25d366;
	}

	.contact-item:hover .contact-icon {
		background: white;
		transform: scale(1.15) rotate(-10deg);
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	}

	.contact-info {
		display: flex;
		flex-direction: column;
		gap: 4px;
		flex: 1;
	}

	.contact-label {
		font-size: 12px;
		font-weight: 700;
		color: #999;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		transition: color 0.3s ease;
	}

	.contact-item:hover .contact-label {
		color: rgba(255, 255, 255, 0.8);
	}

	.contact-value {
		font-size: 16px;
		font-weight: 700;
		color: #1a1a1a;
		transition: color 0.3s ease;
	}

	.contact-item:hover .contact-value {
		color: white;
	}

	.contact-arrow {
		font-size: 16px;
		color: #999;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.contact-item:hover .contact-arrow {
		color: white;
		transform: translateX(8px);
	}

	/* Modal Buttons */
	.modal-buttons {
		display: flex;
		gap: 14px;
		flex-wrap: wrap;
	}

	.btn-primary-custom,
	.btn-secondary-custom {
		flex: 1;
		min-width: 160px;
		padding: 16px 28px;
		border-radius: 14px;
		font-weight: 700;
		border: 2px solid;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		text-decoration: none;
		cursor: pointer;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		font-size: 14px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		position: relative;
		overflow: hidden;
	}

	.btn-primary-custom {
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		border-color: var(--theme-primary, #6366f1);
		color: white;
		box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
	}

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

	.btn-primary-custom:hover::before {
		width: 300px;
		height: 300px;
	}

	.btn-primary-custom:hover {
		gap: 16px;
		transform: scale(1.05);
		box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
	}

	.btn-primary-custom span,
	.btn-primary-custom i {
		position: relative;
		z-index: 1;
	}

	.btn-secondary-custom {
		background: white;
		border-color: #e8e8e8;
		color: #1a1a1a;
	}

	.btn-secondary-custom:hover {
		background: #f8f9fa;
		border-color: var(--theme-primary, #6366f1);
		color: var(--theme-primary, #6366f1);
		transform: scale(1.05);
	}

	/* CTA Button */
	.services-cta {
		text-align: center;
		animation: fadeInUp 0.8s ease-out;
		position: relative;
		z-index: 1;
	}

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

	.btn-view-all {
		display: inline-flex;
		align-items: center;
		gap: 14px;
		padding: 20px 50px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		text-decoration: none;
		border-radius: 20px;
		font-weight: 800;
		font-size: 17px;
		box-shadow: 0 15px 45px rgba(99, 102, 241, 0.4);
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-transform: uppercase;
		letter-spacing: 0.5px;
		border: 2px solid transparent;
		position: relative;
		overflow: hidden;
	}

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

	.btn-view-all:hover::before {
		width: 400px;
		height: 400px;
	}

	.btn-view-all:hover {
		gap: 18px;
		transform: translateY(-8px) scale(1.05);
		box-shadow: 0 20px 60px rgba(99, 102, 241, 0.5);
		border-color: rgba(255, 255, 255, 0.3);
		color: white !important;
	}

	.btn-view-all i,
	.btn-view-all span {
		position: relative;
		z-index: 1;
	}

	/* Responsive - Tablet */
	@media (max-width: 1024px) {
		.services-section {
			padding: 90px 0;
		}

		.services-grid {
			grid-template-columns: repeat(4, 1fr);
			gap: 25px;
		}

		.section-title {
			font-size: 42px;
		}

		.service-image-container {
			height: 240px;
		}

		.modal-body-custom {
			grid-template-columns: 40% 60%;
		}

		.modal-right {
			padding: 40px;
		}

		.modal-main-title {
			font-size: 28px;
		}

		.modal-image-wrapper {
			min-height: 480px;
		}
	}

	/* Responsive - Tablet Small */
	@media (max-width: 768px) {
		.services-section {
			padding: 70px 0;
		}

		.services-header {
			gap: 20px;
			margin-bottom: 60px;
		}

		.section-title {
			font-size: 32px;
		}

		.services-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 25px;
			margin-bottom: 60px;
		}

		.service-card {
			border-radius: 20px;
		}

		.service-card:hover {
			transform: translateY(-10px);
		}

		.service-image-container {
			height: 220px;
		}

		.service-content {
			padding: 24px;
		}

		.service-title {
			font-size: 19px;
		}

		.service-badge {
			width: 50px;
			height: 50px;
			font-size: 20px;
		}

		.modal-body-custom {
			grid-template-columns: 1fr;
		}

		.modal-image-wrapper {
			min-height: 350px;
		}

		.modal-right {
			padding: 35px;
		}

		.modal-main-title {
			font-size: 24px;
		}

		.close-modal {
			width: 50px;
			height: 50px;
			font-size: 20px;
		}

		.contact-methods {
			flex-direction: row;
			gap: 12px;
		}

		.contact-item {
			flex: 1;
			flex-direction: column;
			padding: 16px;
			text-align: center;
		}

		.contact-info {
			gap: 2px;
		}

		.contact-label {
			font-size: 11px;
		}

		.contact-value {
			font-size: 14px;
		}

		.contact-arrow {
			display: none;
		}

		.modal-buttons {
			flex-direction: column;
		}

		.btn-primary-custom,
		.btn-secondary-custom {
			width: 100%;
			min-width: unset;
		}

		.btn-view-all {
			padding: 16px 40px;
			font-size: 15px;
		}
	}

	/* Responsive - Mobile */
	@media (max-width: 576px) {
		.services-section {
			padding: 50px 0;
		}

		.services-header {
			flex-direction: column;
			gap: 12px;
			margin-bottom: 45px;
		}

		.header-line {
			width: 80%;
			max-width: unset;
		}

		.section-title {
			font-size: 26px;
			letter-spacing: -1px;
		}

		.section-title i {
			font-size: 22px;
		}

		.services-grid {
			grid-template-columns: 1fr;
			gap: 20px;
			margin-bottom: 45px;
		}

		.service-card {
			border-radius: 18px;
		}

		.service-image-container {
			height: 200px;
		}

		.service-content {
			padding: 20px;
		}

		.service-category {
			font-size: 11px;
			padding: 6px 14px;
		}

		.service-title {
			font-size: 18px;
		}

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

		.service-btn {
			padding: 12px 16px;
			font-size: 13px;
		}

		.service-link {
			width: 46px;
			height: 46px;
			font-size: 16px;
		}

		.service-badge {
			width: 45px;
			height: 45px;
			font-size: 18px;
			top: 15px;
			right: 15px;
		}

		.modal-content-wrapper {
			width: 95%;
			max-height: 95vh;
		}

		.modal-body-custom {
			border-radius: 24px;
		}

		.modal-image-wrapper {
			min-height: 280px;
		}

		.modal-right {
			padding: 25px;
		}

		.modal-header-badge {
			font-size: 11px;
			padding: 8px 16px;
		}

		.modal-main-title {
			font-size: 22px;
		}

		.modal-description {
			font-size: 15px;
		}

		.close-modal {
			top: 18px;
			right: 18px;
			width: 45px;
			height: 45px;
			font-size: 18px;
		}

		.modal-label {
			bottom: 20px;
			left: 20px;
			padding: 10px 20px;
			font-size: 13px;
		}

		.contact-section {
			padding: 20px;
		}

		.contact-title {
			font-size: 14px;
		}

		.contact-methods {
			flex-direction: column;
		}

		.contact-item {
			flex-direction: row;
			text-align: left;
		}

		.contact-arrow {
			display: block;
		}

		.services-cta {
			margin-top: 35px;
		}

		.btn-view-all {
			padding: 15px 35px;
			font-size: 14px;
			gap: 12px;
		}

		.deco-circle {
			display: none;
		}
	}
	/* anasayfa hizmetler son */
















/* ============================================
	   ULTRA PRODUCTS SECTION
	============================================ */
	.ultra-products-section {
		padding: 140px 0;
		background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
		position: relative;
		overflow: hidden;
	}

	/* Öne Çıkan Ürünlerimiz */
	.products-decoration {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		overflow: hidden;
		z-index: 0;
	}

	.deco-blob {
		position: absolute;
		border-radius: 50%;
		filter: blur(120px);
		opacity: 0.12;
		animation: blobFloat 25s ease-in-out infinite;
	}

	.blob-1 {
		width: 700px;
		height: 700px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		top: -300px;
		left: -200px;
		animation-delay: 0s;
	}

	.blob-2 {
		width: 600px;
		height: 600px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		top: 40%;
		right: -200px;
		animation-delay: 8s;
	}

	.blob-3 {
		width: 500px;
		height: 500px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		bottom: -150px;
		left: 30%;
		animation-delay: 16s;
	}

	@keyframes blobFloat {
		0%, 100% { transform: translate(0, 0) scale(1); }
		25% { transform: translate(60px, -60px) scale(1.15); }
		50% { transform: translate(-40px, 40px) scale(0.85); }
		75% { transform: translate(40px, 60px) scale(1.1); }
	}

	.floating-particles {
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.particle {
		position: absolute;
		width: 8px;
		height: 8px;
		background: var(--theme-primary, #6366f1);
		border-radius: 50%;
		opacity: 0.3;
		animation: particleFloat 20s ease-in-out infinite;
	}

	.particle-1 { top: 10%; left: 15%; animation-delay: 0s; }
	.particle-2 { top: 30%; right: 20%; animation-delay: 4s; }
	.particle-3 { bottom: 20%; left: 25%; animation-delay: 8s; }
	.particle-4 { top: 60%; right: 15%; animation-delay: 12s; }
	.particle-5 { bottom: 30%; left: 40%; animation-delay: 16s; }

	@keyframes particleFloat {
		0%, 100% { transform: translate(0, 0); opacity: 0.3; }
		25% { transform: translate(30px, -30px); opacity: 0.6; }
		50% { transform: translate(-20px, 20px); opacity: 0.4; }
		75% { transform: translate(20px, 30px); opacity: 0.5; }
	}

	.ultra-products-section > .container {
		position: relative;
		z-index: 1;
	}

	/* ============================================
	   SECTION HEADER
	============================================ */
	.products-section-header {
		text-align: center;
		margin-bottom: 80px;
		animation: fadeInDown 0.8s ease-out;
	}

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

	.header-badge-wrapper {
		margin-bottom: 25px;
	}

	.header-badge {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		padding: 14px 32px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 50px;
		font-size: 14px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 1.5px;
		box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
		animation: badgeFloat 3s ease-in-out infinite;
		border: 2px solid rgba(255, 255, 255, 0.2);
	}

	@keyframes badgeFloat {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(-8px); }
	}

	.header-badge i {
		font-size: 18px;
		animation: crownRotate 4s linear infinite;
	}

	@keyframes crownRotate {
		0%, 100% { transform: rotate(0deg); }
		25% { transform: rotate(-10deg); }
		75% { transform: rotate(10deg); }
	}

	.products-main-title {
		font-size: 56px;
		font-weight: 900;
		color: #1a1a1a;
		margin: 0 0 20px 0;
		line-height: 1.2;
		letter-spacing: -2px;
		position: relative;
		display: inline-block;
	}

	.title-glow {
		position: absolute;
		bottom: -10px;
		left: 0;
		width: 100%;
		height: 8px;
		background: linear-gradient(90deg, var(--theme-primary, #6366f1) 0%, transparent 100%);
		border-radius: 10px;
		filter: blur(8px);
		opacity: 0.6;
		animation: glowPulse 3s ease-in-out infinite;
	}

	@keyframes glowPulse {
		0%, 100% { opacity: 0.6; width: 100%; }
		50% { opacity: 0.9; width: 120%; }
	}

	.products-subtitle {
		font-size: 18px;
		color: #666;
		margin: 0 0 30px 0;
		font-weight: 600;
		letter-spacing: 0.5px;
	}

	.header-decoration {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 15px;
		margin-top: 30px;
	}

	.deco-line {
		width: 100px;
		height: 3px;
		background: linear-gradient(90deg, transparent, var(--theme-primary, #6366f1), transparent);
		border-radius: 10px;
		animation: lineGrow 2s ease-in-out infinite;
	}

	@keyframes lineGrow {
		0%, 100% { width: 100px; }
		50% { width: 140px; }
	}

	.deco-dot {
		width: 12px;
		height: 12px;
		background: var(--theme-primary, #6366f1);
		border-radius: 50%;
		box-shadow: 0 0 20px var(--theme-primary, #6366f1);
		animation: dotPulse 2s ease-in-out infinite;
	}

	@keyframes dotPulse {
		0%, 100% { transform: scale(1); opacity: 1; }
		50% { transform: scale(1.5); opacity: 0.7; }
	}

	/* ============================================
	   PRODUCTS GRID
	============================================ */
	.products-wrapper {
		margin-bottom: 80px;
	}

	.products-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 35px;
	}

	.product-item {
		animation: fadeInUp 0.6s ease-out forwards;
		opacity: 0;
	}

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

	/* ============================================
	   PRODUCT CARD
	============================================ */
	.ultra-product-card {
		background: white;
		border-radius: 28px;
		overflow: hidden;
		border: 2px solid #e8e8e8;
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
		display: flex;
		flex-direction: column;
		height: 100%;
		position: relative;
		transform-style: preserve-3d;
	}

	.ultra-product-card::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, transparent 100%);
		opacity: 0;
		transition: opacity 0.4s ease;
		pointer-events: none;
		z-index: 1;
	}

	.ultra-product-card:hover {
		border-color: var(--theme-primary, #6366f1);
		box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
		transform: translateY(-12px) scale(1.02);
	}

	.ultra-product-card:hover::before {
		opacity: 0.03;
	}

	.card-border {
		position: absolute;
		inset: -2px;
		border-radius: 28px;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1), transparent);
		opacity: 0;
		transition: opacity 0.4s ease;
		z-index: -1;
		pointer-events: none;
	}

	.ultra-product-card:hover .card-border {
		opacity: 1;
	}

	/* Image Section */
	.product-image-wrapper {
		position: relative;
		width: 100%;
		height: 320px;
		overflow: hidden;
		background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
	}

	.image-glow {
		position: absolute;
		inset: -30px;
		background: radial-gradient(circle at center, var(--theme-primary, #6366f1), transparent 70%);
		opacity: 0;
		filter: blur(40px);
		z-index: 0;
		transition: opacity 0.4s ease;
	}

	.ultra-product-card:hover .image-glow {
		opacity: 0.4;
	}

	.product-image-link {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 1;
	}

	.product-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.ultra-product-card:hover .product-image {
		transform: scale(1.15) rotate(2deg);
	}

	.image-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, rgba(0, 0, 0, 0.5) 100%);
		opacity: 0;
		transition: opacity 0.4s ease;
		z-index: 1;
	}

	.ultra-product-card:hover .image-overlay {
		opacity: 0.2;
	}

	/* Badges */
	.product-badges {
		position: absolute;
		top: 20px;
		left: 20px;
		right: 20px;
		display: flex;
		gap: 10px;
		z-index: 2;
		flex-wrap: wrap;
	}

	.badge {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		padding: 10px 16px;
		border-radius: 50px;
		font-size: 11px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		color: white;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
		animation: badgePop 0.5s ease-out;
		backdrop-filter: blur(10px);
	}

	@keyframes badgePop {
		0% { transform: scale(0); opacity: 0; }
		50% { transform: scale(1.1); }
		100% { transform: scale(1); opacity: 1; }
	}

	.badge-new {
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, rgba(99, 102, 241, 0.9) 100%);
	}

	.badge-sale {
		background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
		animation-delay: 0.1s;
	}

	.badge i {
		font-size: 13px;
		animation: iconSpin 3s linear infinite;
	}

	@keyframes iconSpin {
		0%, 100% { transform: rotate(0deg); }
		50% { transform: rotate(15deg); }
	}

	/* Quick View */
	.quick-view {
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%) translateY(20px);
		opacity: 0;
		z-index: 3;
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.ultra-product-card:hover .quick-view {
		transform: translateX(-50%) translateY(0);
		opacity: 1;
	}

	.quick-view-btn {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 12px 24px;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		color: var(--theme-primary, #6366f1);
		border-radius: 50px;
		font-size: 13px;
		font-weight: 700;
		text-decoration: none;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
		border: 2px solid rgba(255, 255, 255, 0.5);
		transition: all 0.3s ease;
	}

	.quick-view-btn:hover {
		background: var(--theme-primary, #6366f1);
		color: white;
		transform: scale(1.05);
		box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
	}

	/* Content Section */
	.product-content {
		padding: 28px;
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 14px;
		position: relative;
		z-index: 2;
	}

	.product-category {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 8px 16px;
		background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
		color: var(--theme-primary, #6366f1);
		border-radius: 50px;
		font-size: 11px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		width: fit-content;
		border: 1px solid #e8e8e8;
	}

	.product-title {
		font-size: 19px;
		font-weight: 800;
		margin: 0;
		line-height: 1.3;
		min-height: 50px;
	}

	.product-title a {
		color: #1a1a1a;
		text-decoration: none;
		transition: color 0.3s ease;
	}

	.product-title a:hover {
		color: var(--theme-primary, #6366f1);
	}

	.ultra-product-card:hover .product-title a {
		color: var(--theme-primary, #6366f1);
	}

	/* Rating */
	.product-rating {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.stars {
		display: flex;
		gap: 3px;
		color: #ffc107;
		font-size: 14px;
	}

	.rating-text {
		font-size: 13px;
		color: #666;
		font-weight: 600;
	}

	/* Price */
	.product-price {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 18px 0;
		border-top: 2px solid #f5f5f5;
		border-bottom: 2px solid #f5f5f5;
		margin: 8px 0;
	}

	.price-wrapper {
		display: flex;
		align-items: center;
		gap: 12px;
		flex-wrap: wrap;
	}

	.price-current {
		font-size: 24px;
		font-weight: 900;
		color: var(--theme-primary, #6366f1);
		letter-spacing: -0.5px;
	}

	.price-old {
		font-size: 16px;
		color: #999;
		text-decoration: line-through;
		font-weight: 600;
	}

	.discount-badge {
		padding: 6px 12px;
		background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
		color: white;
		border-radius: 50px;
		font-size: 11px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
	}

	/* Actions */
	.product-actions {
		display: flex;
		gap: 12px;
		margin-top: auto;
	}

	.btn-main {
		flex: 1;
		padding: 16px 24px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border: none;
		border-radius: 14px;
		font-size: 14px;
		font-weight: 800;
		text-decoration: none;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		cursor: pointer;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-transform: uppercase;
		letter-spacing: 0.5px;
		box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
		position: relative;
		overflow: hidden;
	}

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

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

	.btn-main:hover {
		gap: 14px;
		transform: scale(1.05);
		box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
		color: white;
	}

	.btn-main span,
	.btn-main i {
		position: relative;
		z-index: 1;
	}

	.action-icons {
		display: flex;
		gap: 10px;
	}

	.action-btn {
		width: 50px;
		height: 50px;
		border: 2px solid;
		border-radius: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 18px;
		cursor: pointer;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-decoration: none;
		flex-shrink: 0;
		background: white;
	}

	.btn-phone {
		color: var(--theme-primary, #6366f1);
		border-color: var(--theme-primary, #6366f1);
	}

	.btn-phone:hover {
		background: var(--theme-primary, #6366f1);
		color: white;
		transform: scale(1.1) rotate(-5deg);
		box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
	}

	.btn-whatsapp {
		color: #25d366;
		border-color: #25d366;
	}

	.btn-whatsapp:hover {
		background: #25d366;
		color: white;
		transform: scale(1.1) rotate(5deg);
		box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
	}

	/* ============================================
	   VIEW ALL BUTTON
	============================================ */
	.products-cta {
		text-align: center;
		animation: fadeInUp 0.8s ease-out;
	}

	.btn-view-all-products {
		display: inline-flex;
		align-items: center;
		gap: 16px;
		padding: 22px 55px;
		background: white;
		color: var(--theme-primary, #6366f1);
		text-decoration: none;
		border-radius: 20px;
		font-weight: 800;
		font-size: 17px;
		box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-transform: uppercase;
		letter-spacing: 0.5px;
		border: 3px solid var(--theme-primary, #6366f1);
		position: relative;
		overflow: hidden;
	}

	.btn-bg {
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		transition: left 0.5s ease;
		z-index: 0;
	}

	.btn-view-all-products:hover .btn-bg {
		left: 0;
	}

	.btn-view-all-products:hover {
		gap: 20px;
		transform: translateY(-8px) scale(1.05);
		box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
		color: white;
	}

	.btn-view-all-products .btn-text,
	.btn-view-all-products i {
		position: relative;
		z-index: 1;
	}

	/* ============================================
	   RESPONSIVE DESIGN
	============================================ */
	@media (max-width: 1200px) {
		.ultra-products-section {
			padding: 100px 0;
		}

		.products-main-title {
			font-size: 48px;
		}

		.products-grid {
			grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
			gap: 30px;
		}
	}

	@media (max-width: 992px) {
		.ultra-products-section {
			padding: 80px 0;
		}

		.products-section-header {
			margin-bottom: 60px;
		}

		.products-main-title {
			font-size: 42px;
		}

		.products-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 25px;
		}

		.product-image-wrapper {
			height: 280px;
		}

		.product-title {
			font-size: 17px;
			min-height: 44px;
		}
	}

	@media (max-width: 768px) {
		.ultra-products-section {
			padding: 60px 0;
		}

		.deco-blob,
		.floating-particles {
			display: none;
		}

		.header-badge {
			padding: 12px 24px;
			font-size: 12px;
		}

		.products-main-title {
			font-size: 36px;
			letter-spacing: -1px;
		}

		.products-subtitle {
			font-size: 16px;
		}

		.products-wrapper {
			margin-bottom: 60px;
			overflow-x: auto;
			-webkit-overflow-scrolling: touch;
			margin-left: -15px;
			margin-right: -15px;
			padding: 5px 15px 15px;
		}

		.products-grid {
			display: flex;
			flex-wrap: nowrap;
			gap: 20px;
			grid-template-columns: none;
		}

		.product-item {
			flex: 0 0 auto;
			width: 300px;
			min-width: 300px;
		}

		.ultra-product-card {
			border-radius: 24px;
		}

		.product-image-wrapper {
			height: 300px;
		}

		.product-content {
			padding: 22px;
		}

		.product-title {
			font-size: 16px;
		}

		.btn-main {
			padding: 14px 20px;
			font-size: 13px;
		}

		.action-btn {
			width: 46px;
			height: 46px;
			font-size: 16px;
		}

		.btn-view-all-products {
			padding: 18px 40px;
			font-size: 15px;
		}
	}

	@media (max-width: 576px) {
		.ultra-products-section {
			padding: 50px 0;
		}

		.header-badge {
			font-size: 11px;
			padding: 10px 20px;
		}

		.products-main-title {
			font-size: 28px;
		}

		.products-subtitle {
			font-size: 14px;
		}

		.product-item {
			width: 280px;
			min-width: 280px;
		}

		.product-image-wrapper {
			height: 280px;
		}

		.product-content {
			padding: 20px;
		}

		.product-category {
			font-size: 10px;
			padding: 6px 12px;
		}

		.product-title {
			font-size: 15px;
			min-height: 40px;
		}

		.price-current {
			font-size: 20px;
		}

		.price-old {
			font-size: 14px;
		}

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

		.btn-main {
			padding: 13px 18px;
			font-size: 12px;
			gap: 8px;
		}

		.action-btn {
			width: 44px;
			height: 44px;
			font-size: 15px;
		}

		.btn-view-all-products {
			padding: 16px 35px;
			font-size: 14px;
			width: 100%;
			max-width: 320px;
		}
	}
	
	/* Öne Çıkan Ürünlerimiz SON */
	
	
	
		/* Haberler */
	
	
	 :root {
        --urunkat-primary: var(--theme-primary, #30b066);
    }

    /* Page Header */
    .urunkat-pageheader {
        padding: 60px 0;
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .urunkat-pageheader::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    }

    .urunkat-pageheader__area {
        position: relative;
        z-index: 1;
    }

    .urunkat-pageheader__area h2 {
        font-size: 48px;
        font-weight: 800;
        color: white;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .urunkat-breadcrumb {
        list-style: none;
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0;
        padding: 0;
    }

    .urunkat-breadcrumb-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .urunkat-breadcrumb-item a {
        color: rgba(255,255,255,0.9);
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 600;
        font-size: 14px;
    }

    .urunkat-breadcrumb-item a:hover {
        color: var(--theme-primary, #30b066);
    }

    .urunkat-breadcrumb-item.active {
        color: var(--theme-primary, #30b066);
        font-weight: 700;
    }

    .urunkat-separator {
        width: 1px;
        height: 20px;
        background: rgba(255,255,255,0.3);
    }

    /* Blog Section */
    .urunkat-blog-section {
        padding: 140px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .urunkat-products-decoration {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
        z-index: 0;
    }

    .urunkat-deco-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.12;
        animation: urunkat-blobFloat 25s ease-in-out infinite;
    }

    .urunkat-blob-1 {
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, var(--theme-primary, #30b066), transparent);
        top: -300px;
        left: -200px;
    }

    .urunkat-blob-2 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--theme-primary, #30b066), transparent);
        top: 40%;
        right: -200px;
        animation-delay: 8s;
    }

    .urunkat-blob-3 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--theme-primary, #30b066), transparent);
        bottom: -150px;
        left: 30%;
        animation-delay: 16s;
    }

    @keyframes urunkat-blobFloat {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(60px, -60px) scale(1.15); }
        50% { transform: translate(-40px, 40px) scale(0.85); }
        75% { transform: translate(40px, 60px) scale(1.1); }
    }

    .urunkat-floating-particles {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .urunkat-particle {
        position: absolute;
        width: 8px;
        height: 8px;
        background: var(--theme-primary, #30b066);
        border-radius: 50%;
        opacity: 0.3;
        animation: urunkat-particleFloat 20s ease-in-out infinite;
    }

    .urunkat-particle-1 { top: 10%; left: 15%; }
    .urunkat-particle-2 { top: 30%; right: 20%; animation-delay: 4s; }
    .urunkat-particle-3 { bottom: 20%; left: 25%; animation-delay: 8s; }
    .urunkat-particle-4 { top: 60%; right: 15%; animation-delay: 12s; }
    .urunkat-particle-5 { bottom: 30%; left: 40%; animation-delay: 16s; }

    @keyframes urunkat-particleFloat {
        0%, 100% { transform: translate(0, 0); opacity: 0.3; }
        25% { transform: translate(30px, -30px); opacity: 0.6; }
        50% { transform: translate(-20px, 20px); opacity: 0.4; }
        75% { transform: translate(20px, 30px); opacity: 0.5; }
    }

    .urunkat-blog-section > .container {
        position: relative;
        z-index: 1;
    }

    .urunkat-blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 35px;
        margin-bottom: 60px;
    }

    .urunkat-blog-item {
        animation: urunkat-fadeInUp 0.6s ease-out forwards;
        opacity: 0;
    }

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

    .urunkat-blog-card {
        background: white;
        border-radius: 28px;
        overflow: hidden;
        border: 2px solid #e8e8e8;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
    }

    .urunkat-blog-card:hover {
        border-color: var(--theme-primary, #30b066);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        transform: translateY(-12px) scale(1.02);
    }

    .urunkat-blog-border {
        position: absolute;
        inset: -2px;
        border-radius: 28px;
        background: linear-gradient(135deg, var(--theme-primary, #30b066), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
        pointer-events: none;
    }

    .urunkat-blog-card:hover .urunkat-blog-border {
        opacity: 1;
    }

    .urunkat-blog-image-wrapper {
        position: relative;
        width: 100%;
        height: 320px;
        overflow: hidden;
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    }

    .urunkat-blog-image-link {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }

    .urunkat-blog-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .urunkat-blog-card:hover .urunkat-blog-image {
        transform: scale(1.15) rotate(2deg);
    }

    .urunkat-blog-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--theme-primary, #30b066) 0%, rgba(0, 0, 0, 0.5) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .urunkat-blog-card:hover .urunkat-blog-overlay {
        opacity: 0;
    }

    .urunkat-blog-meta {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px 20px;
        background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
        display: flex;
        gap: 15px;
        justify-content: flex-start;
    }

    .urunkat-blog-views,
    .urunkat-blog-date {
        display: flex;
        align-items: center;
        gap: 6px;
        color: white;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .urunkat-blog-views i,
    .urunkat-blog-date i {
        color: var(--theme-primary, #30b066);
    }

    .urunkat-blog-content {
        padding: 28px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
        z-index: 2;
    }

    .urunkat-blog-title {
        font-size: 19px;
        font-weight: 800;
        margin: 0;
        line-height: 1.4;
    }

    .urunkat-blog-title a {
        color: #1a1a1a;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .urunkat-blog-title a:hover {
        color: var(--theme-primary, #30b066);
    }

    .urunkat-blog-card:hover .urunkat-blog-title a {
        color: var(--theme-primary, #30b066);
    }

    .urunkat-blog-footer {
        margin-top: auto;
    }

    .urunkat-blog-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        background: linear-gradient(110deg, var(--theme-primary, #30b066) 0%, var(--theme-primary, #30b066) 100%);
        color: white;
        text-decoration: none;
        border-radius: 10px;
        font-weight: 700;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        box-shadow: 0 4px 12px rgba(48, 176, 102, 0.3);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .urunkat-blog-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px var(--theme-primary, rgba(48, 176, 102, 0.5));
        gap: 14px;
    }

    /* Pagination */
    .urunkat-blog-pagination {
        display: flex;
        gap: 8px;
        list-style: none;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    .urunkat-page-item .urunkat-page-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 44px;
        padding: 0 12px;
        border: 2px solid #e2e8f0;
        color: #475569;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 14px;
    }

    .urunkat-page-item .urunkat-page-link:hover {
        border-color: var(--theme-primary, #30b066);
        color: var(--theme-primary, #30b066);
        background: rgba(48, 176, 102, 0.05);
        transform: translateY(-2px);
    }

    .urunkat-page-item .urunkat-page-link.active {
        background: var(--theme-primary, #30b066);
        color: white;
        border-color: var(--theme-primary, #30b066);
        box-shadow: 0 4px 12px rgba(48, 176, 102, 0.3);
    }

    /* Empty State */
    .urunkat-blog-empty {
        text-align: center;
        padding: 80px 40px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    }

    .urunkat-empty-icon {
        font-size: 80px;
        color: var(--theme-primary, #30b066);
        margin-bottom: 30px;
        opacity: 0.8;
    }

    .urunkat-empty-title {
        font-size: 32px;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 15px;
    }

    .urunkat-empty-text {
        font-size: 16px;
        color: #666;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .urunkat-empty-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        background: linear-gradient(110deg, var(--theme-primary, #30b066) 0%, var(--theme-primary, #30b066) 100%);
        color: white;
        text-decoration: none;
        border-radius: 14px;
        font-weight: 800;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 8px 24px rgba(48, 176, 102, 0.3);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .urunkat-empty-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px var(--theme-primary, rgba(48, 176, 102, 0.5));
    }

    @media (max-width: 992px) {
        .urunkat-blog-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .urunkat-pageheader__area h2 {
            font-size: 36px;
        }
    }

    @media (max-width: 768px) {
        .urunkat-deco-blob,
        .urunkat-floating-particles {
            display: none;
        }

        .urunkat-blog-grid {
            display: flex;
            flex-wrap: nowrap;
            gap: 20px;
            margin-left: -15px;
            margin-right: -15px;
            padding: 5px 15px 15px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .urunkat-blog-item {
            flex: 0 0 auto;
            width: 300px;
            min-width: 300px;
        }

        .urunkat-pageheader__area h2 {
            font-size: 28px;
        }

        .urunkat-blog-section {
            padding: 60px 0;
        }
    }

    @media (max-width: 576px) {
        .urunkat-blog-section {
            padding: 50px 0;
        }

        .urunkat-blog-item {
            width: 280px;
            min-width: 280px;
        }

        .urunkat-empty-title {
            font-size: 24px;
        }

        .urunkat-empty-text {
            font-size: 14px;
        }
    }
	
		/* Haberler Son */
		/* Haber Detay */
		
		
		  :root {
        --urunkat-primary: var(--theme-primary, #30b066);
    }

    .urunkat-blog-detail-section {
        padding: 80px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    }

    .urunkat-blog-detail-wrapper {
        margin: 0;
    }

    /* Blog Detail Card */
    .urunkat-blog-detail-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
    }

    .urunkat-blog-detail-image {
        position: relative;
        width: 100%;
        height: 420px;
        overflow: hidden;
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    }

    .urunkat-blog-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .urunkat-blog-detail-date {
        position: absolute;
        bottom: 20px;
        left: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        background: var(--theme-primary, #30b066);
        color: white;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        box-shadow: 0 4px 15px rgba(48, 176, 102, 0.3);
    }

    .urunkat-blog-detail-content {
        padding: 40px;
    }

    .urunkat-blog-detail-title {
        font-size: 32px;
        font-weight: 800;
        color: #1a1a1a;
        margin: 0 0 20px 0;
        line-height: 1.3;
        letter-spacing: -0.5px;
    }

    .urunkat-blog-detail-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #f0f0f0;
    }

    .urunkat-blog-detail-meta span {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        font-size: 14px;
        font-weight: 600;
    }

    .urunkat-blog-detail-meta i {
        color: var(--theme-primary, #30b066);
    }

    .urunkat-blog-detail-text {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 30px;
    }

    .urunkat-blog-detail-text p {
        margin-bottom: 20px;
    }

    .urunkat-blog-detail-video {
        margin: 30px 0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* Gallery */
    .urunkat-gallery-section {
        margin: 40px 0;
    }

    .urunkat-gallery-item {
        display: block;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .urunkat-gallery-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

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

    .urunkat-gallery-item:hover .urunkat-gallery-image img {
        transform: scale(1.1);
    }

    .urunkat-gallery-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .urunkat-gallery-overlay i {
        font-size: 32px;
        color: white;
    }

    .urunkat-gallery-item:hover .urunkat-gallery-overlay {
        opacity: 1;
    }

    /* Tags */
    .urunkat-tags-section {
        margin: 30px 0;
        padding: 20px 0;
        border-top: 2px solid #f0f0f0;
        border-bottom: 2px solid #f0f0f0;
    }

    .urunkat-tags-list {
        display: flex;
        gap: 12px;
        align-items: center;
        flex-wrap: wrap;
    }

    .urunkat-tags-icon {
        color: var(--theme-primary, #30b066);
        font-size: 18px;
    }

    .urunkat-tag-link {
        display: inline-block;
        padding: 8px 16px;
        background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
        color: #555;
        text-decoration: none;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 1px solid #e0e0e0;
    }

    .urunkat-tag-link:hover {
        background: var(--theme-primary, #30b066);
        color: white;
        border-color: var(--theme-primary, #30b066);
        transform: translateY(-2px);
    }

    /* Sidebar */
    .urunkat-sidebar {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .urunkat-sidebar-widget {
        background: white;
        padding: 25px;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .urunkat-sidebar-widget:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .urunkat-sidebar-title {
        font-size: 18px;
        font-weight: 800;
        color: #1a1a1a;
        margin: 0 0 18px 0;
        padding-bottom: 12px;
        border-bottom: 2px solid #f0f0f0;
    }

    /* Search */
    .urunkat-search-form {
        display: flex;
        gap: 8px;
    }

    .urunkat-search-form input {
        flex: 1;
        padding: 12px 16px;
        border: 2px solid #e8e8e8;
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .urunkat-search-form input:focus {
        outline: none;
        border-color: var(--theme-primary, #30b066);
        box-shadow: 0 0 0 3px rgba(48, 176, 102, 0.1);
    }

    .urunkat-search-form button {
        width: 44px;
        height: 44px;
        background: var(--theme-primary, #30b066);
        border: none;
        border-radius: 8px;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .urunkat-search-form button:hover {
        background: var(--theme-primary, #30b066);
        filter: brightness(0.9);
        transform: scale(1.05);
    }

    /* Posts List */
    .urunkat-posts-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .urunkat-post-item {
        list-style: none;
    }

    .urunkat-post-link {
        display: flex;
        gap: 12px;
        text-decoration: none;
        padding: 10px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .urunkat-post-link:hover {
        background: #f5f5f5;
    }

    .urunkat-post-thumb {
        width: 70px;
        height: 70px;
        min-width: 70px;
        border-radius: 8px;
        overflow: hidden;
    }

    .urunkat-post-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .urunkat-post-link:hover .urunkat-post-thumb img {
        transform: scale(1.1);
    }

    .urunkat-post-content h6 {
        font-size: 13px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 5px 0;
        line-height: 1.3;
    }

    .urunkat-post-content span {
        font-size: 12px;
        color: #999;
    }

    /* Contact Box */
    .urunkat-contact-box {
        text-align: center;
    }

    .urunkat-contact-image {
        width: 100%;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .urunkat-contact-text {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .urunkat-contact-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 24px;
        background: linear-gradient(110deg, var(--theme-primary, #30b066) 0%, var(--theme-primary, #30b066) 100%);
        color: white;
        text-decoration: none;
        border-radius: 10px;
        font-weight: 700;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        box-shadow: 0 4px 12px rgba(48, 176, 102, 0.3);
        transition: all 0.3s ease;
    }

    .urunkat-contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px var(--theme-primary, rgba(48, 176, 102, 0.5));
        gap: 12px;
    }

    @media (max-width: 768px) {
        .urunkat-blog-detail-image {
            height: 280px;
        }

        .urunkat-blog-detail-content {
            padding: 25px;
        }

        .urunkat-blog-detail-title {
            font-size: 24px;
        }

        .urunkat-sidebar {
            gap: 20px;
        }

        .urunkat-sidebar-widget {
            padding: 20px;
        }
    }

    @media (max-width: 480px) {
        .urunkat-blog-detail-content {
            padding: 18px;
        }

        .urunkat-blog-detail-title {
            font-size: 20px;
        }

        .urunkat-blog-detail-date {
            font-size: 11px;
            padding: 8px 14px;
        }
    }
	
	/* Haber Detay Son*/
	
	/* Ürün Kategori*/
	
	
	
	
	   :root {
        --urunkat-primary: var(--theme-primary, #30b066);
    }

    .urunkat-ultra-products-section {
        padding: 140px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .urunkat-products-decoration {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
        z-index: 0;
    }

    .urunkat-deco-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.12;
        animation: urunkat-blobFloat 25s ease-in-out infinite;
    }

    .urunkat-blob-1 {
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, var(--theme-primary, #30b066), transparent);
        top: -300px;
        left: -200px;
    }

    .urunkat-blob-2 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--theme-primary, #30b066), transparent);
        top: 40%;
        right: -200px;
        animation-delay: 8s;
    }

    .urunkat-blob-3 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--theme-primary, #30b066), transparent);
        bottom: -150px;
        left: 30%;
        animation-delay: 16s;
    }

    @keyframes urunkat-blobFloat {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(60px, -60px) scale(1.15); }
        50% { transform: translate(-40px, 40px) scale(0.85); }
        75% { transform: translate(40px, 60px) scale(1.1); }
    }

    .urunkat-floating-particles {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .urunkat-particle {
        position: absolute;
        width: 8px;
        height: 8px;
        background: var(--theme-primary, #30b066);
        border-radius: 50%;
        opacity: 0.3;
        animation: urunkat-particleFloat 20s ease-in-out infinite;
    }

    .urunkat-particle-1 { top: 10%; left: 15%; }
    .urunkat-particle-2 { top: 30%; right: 20%; animation-delay: 4s; }
    .urunkat-particle-3 { bottom: 20%; left: 25%; animation-delay: 8s; }
    .urunkat-particle-4 { top: 60%; right: 15%; animation-delay: 12s; }
    .urunkat-particle-5 { bottom: 30%; left: 40%; animation-delay: 16s; }

    @keyframes urunkat-particleFloat {
        0%, 100% { transform: translate(0, 0); opacity: 0.3; }
        25% { transform: translate(30px, -30px); opacity: 0.6; }
        50% { transform: translate(-20px, 20px); opacity: 0.4; }
        75% { transform: translate(20px, 30px); opacity: 0.5; }
    }

    .urunkat-ultra-products-section > .container {
        position: relative;
        z-index: 1;
    }

    .urunkat-products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 35px;
    }

    .urunkat-product-item {
        animation: urunkat-fadeInUp 0.6s ease-out forwards;
        opacity: 0;
    }

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

    .urunkat-ultra-product-card {
        background: white;
        border-radius: 28px;
        overflow: hidden;
        border: 2px solid #e8e8e8;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
    }

    .urunkat-ultra-product-card:hover {
        border-color: var(--theme-primary, #30b066);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        transform: translateY(-12px) scale(1.02);
    }

    .urunkat-card-border {
        position: absolute;
        inset: -2px;
        border-radius: 28px;
        background: linear-gradient(135deg, var(--theme-primary, #30b066), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
        pointer-events: none;
    }

    .urunkat-ultra-product-card:hover .urunkat-card-border {
        opacity: 1;
    }

    .urunkat-product-image-wrapper {
        position: relative;
        width: 100%;
        height: 320px;
        overflow: hidden;
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    }

    /* --- RESİM ÜSTÜ RENKLENME TAMAMEN KALDIRILDI --- */
    .urunkat-image-glow,
    .urunkat-image-overlay,
    .urunkat-ultra-product-card:hover .urunkat-image-glow,
    .urunkat-ultra-product-card:hover .urunkat-image-overlay {
        opacity: 0 !important;
        background: none !important;
        filter: none !important;
    }

    .urunkat-product-image-link {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
    }

    .urunkat-product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .urunkat-ultra-product-card:hover .urunkat-product-image {
        transform: scale(1.15) rotate(2deg);
    }

    .urunkat-product-badges {
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        display: flex;
        gap: 10px;
        z-index: 2;
        flex-wrap: wrap;
    }

    .urunkat-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 16px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: white;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        animation: urunkat-badgePop 0.5s ease-out;
        backdrop-filter: blur(10px);
    }

    @keyframes urunkat-badgePop {
        0% { transform: scale(0); opacity: 0; }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); opacity: 1; }
    }

    .urunkat-badge-new {
        background: linear-gradient(135deg, var(--theme-primary, #30b066) 0%, rgba(10, 11, 11, 0.9) 100%);
    }

    .urunkat-badge-sale {
        background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
        animation-delay: 0.1s;
    }

    .urunkat-badge i {
        font-size: 13px;
        animation: urunkat-iconSpin 3s linear infinite;
    }

    @keyframes urunkat-iconSpin {
        0%, 100% { transform: rotate(0deg); }
        50% { transform: rotate(15deg); }
    }

    .urunkat-quick-view {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
        z-index: 3;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .urunkat-ultra-product-card:hover .urunkat-quick-view {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    .urunkat-quick-view-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        color: var(--theme-primary, #30b066);
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
    }

    .urunkat-quick-view-btn:hover {
        background: var(--theme-primary, #30b066);
        color: white;
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(48, 176, 102, 0.4);
    }

    .urunkat-product-content {
        padding: 28px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 14px;
        position: relative;
        z-index: 2;
    }

    .urunkat-product-category {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        color: var(--theme-primary, #30b066);
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        width: fit-content;
        border: 1px solid #e8e8e8;
    }

    .urunkat-product-title {
        font-size: 19px;
        font-weight: 800;
        margin: 0;
        line-height: 1.3;
        min-height: 50px;
    }

    .urunkat-product-title a {
        color: #1a1a1a;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .urunkat-product-title a:hover {
        color: var(--theme-primary, #30b066);
    }

    .urunkat-ultra-product-card:hover .urunkat-product-title a {
        color: var(--theme-primary, #30b066);
    }

    .urunkat-product-rating {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .urunkat-stars {
        display: flex;
        gap: 3px;
        color: #ffc107;
        font-size: 14px;
    }

    .urunkat-rating-text {
        font-size: 13px;
        color: #666;
        font-weight: 600;
    }

    .urunkat-product-price {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 0;
        border-top: 2px solid #f5f5f5;
        border-bottom: 2px solid #f5f5f5;
        margin: 8px 0;
    }

    .urunkat-price-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .urunkat-price-current {
        font-size: 24px;
        font-weight: 900;
        color: var(--theme-primary, #30b066);
        letter-spacing: -0.5px;
    }

    .urunkat-price-old {
        font-size: 16px;
        color: #999;
        text-decoration: line-through;
        font-weight: 600;
    }

    .urunkat-discount-badge {
        padding: 6px 12px;
        background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
        color: white;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    }

    .urunkat-product-actions {
        display: flex;
        gap: 12px;
        margin-top: auto;
    }

    .urunkat-btn-main {
        flex: 1;
        padding: 16px 24px;
        background: linear-gradient(110deg, var(--theme-primary, #30b066) 0%, var(--theme-primary, #30b066) 100%);
        color: white;
        border: none;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 8px 24px rgba(48, 176, 102, 0.3);
        position: relative;
        overflow: hidden;
    }

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

    .urunkat-btn-main:hover::before {
        width: 300px;
        height: 300px;
    }

    .urunkat-btn-main:hover {
        gap: 14px;
        transform: scale(1.05);
        box-shadow: 0 12px 35px var(--theme-primary, rgba(48, 176, 102, 0.5));
        color: white;
    }

    .urunkat-btn-main span,
    .urunkat-btn-main i {
        position: relative;
        z-index: 1;
    }

    .urunkat-action-icons {
        display: flex;
        gap: 10px;
    }

    .urunkat-action-btn {
        width: 50px;
        height: 50px;
        border: 2px solid;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        text-decoration: none;
        flex-shrink: 0;
        background: white;
    }

    .urunkat-btn-phone {
        color: var(--theme-primary, #30b066);
        border-color: var(--theme-primary, #30b066);
    }

    .urunkat-btn-phone:hover {
        background: var(--theme-primary, #30b066);
        color: white;
        transform: scale(1.1) rotate(-5deg);
        box-shadow: 0 8px 24px rgba(48, 176, 102, 0.4);
    }

    .urunkat-btn-whatsapp {
        color: #25d366;
        border-color: #25d366;
    }

    .urunkat-btn-whatsapp:hover {
        background: #25d366;
        color: white;
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }

    .urunkat-pagination-wrapper {
        text-align: center;
        margin-top: 60px;
    }

    .urunkat-pagination {
        display: flex;
        gap: 8px;
        list-style: none;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    .urunkat-pagination a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 44px;
        padding: 0 12px;
        border: 2px solid #e2e8f0;
        color: #475569;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 14px;
    }

    .urunkat-pagination a:hover {
        border-color: var(--theme-primary, #30b066);
        color: var(--theme-primary, #30b066);
        background: rgba(48, 176, 102, 0.05);
        transform: translateY(-2px);
    }

    .urunkat-pagination a.active {
        background: var(--theme-primary, #30b066);
        color: white;
        border-color: var(--theme-primary, #30b066);
        box-shadow: 0 4px 12px rgba(48, 176, 102, 0.3);
    }

    @media (max-width: 992px) {
        .urunkat-ultra-products-section {
            padding: 80px 0;
        }

        .urunkat-products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .urunkat-product-image-wrapper {
            height: 280px;
        }

        .urunkat-product-title {
            font-size: 17px;
            min-height: 44px;
        }
    }

    @media (max-width: 768px) {
        .urunkat-ultra-products-section {
            padding: 60px 0;
        }

        .urunkat-deco-blob,
        .urunkat-floating-particles {
            display: none;
        }

        .urunkat-products-grid {
            display: flex;
            flex-wrap: nowrap;
            gap: 20px;
            grid-template-columns: none;
            margin-left: -15px;
            margin-right: -15px;
            padding: 5px 15px 15px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .urunkat-product-item {
            flex: 0 0 auto;
            width: 300px;
            min-width: 300px;
        }

        .urunkat-ultra-product-card {
            border-radius: 24px;
        }

        .urunkat-product-image-wrapper {
            height: 300px;
        }

        .urunkat-product-content {
            padding: 22px;
        }

        .urunkat-product-title {
            font-size: 16px;
        }

        .urunkat-btn-main {
            padding: 14px 20px;
            font-size: 13px;
        }

        .urunkat-action-btn {
            width: 46px;
            height: 46px;
            font-size: 16px;
        }
    }

    @media (max-width: 576px) {
        .urunkat-ultra-products-section {
            padding: 50px 0;
        }

        .urunkat-product-item {
            width: 280px;
            min-width: 280px;
        }

        .urunkat-product-image-wrapper {
            height: 280px;
        }

        .urunkat-product-content {
            padding: 20px;
        }

        .urunkat-product-category {
            font-size: 10px;
            padding: 6px 12px;
        }

        .urunkat-product-title {
            font-size: 15px;
            min-height: 40px;
        }

        .urunkat-price-current {
            font-size: 20px;
        }

        .urunkat-price-old {
            font-size: 14px;
        }

        .urunkat-discount-badge {
            font-size: 10px;
            padding: 5px 10px;
        }

        .urunkat-btn-main {
            padding: 13px 18px;
            font-size: 12px;
            gap: 8px;
        }

        .urunkat-action-btn {
            width: 44px;
            height: 44px;
            font-size: 15px;
        }
    }
	
		/* Ürün Kategori Son*/
		
		/*Sık Sorular Sorular*/
		
		
		 /* Ana Container Animasyonları */
        .faq {
            position: relative;
            padding: 80px 0;
        }

        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(var(--theme-primary-rgb), 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(var(--theme-primary-rgb), 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .section__wrapper {
            position: relative;
            z-index: 1;
        }

        /* Sol Görsel Kartı */
        .faq__content {
            height: 100%;
        }

        .image-card {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 
                0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            background: linear-gradient(135deg, var(--theme-primary) 0%, rgba(var(--theme-primary-rgb), 0.8) 100%);
            padding: 4px;
        }

        .image-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 70%
            );
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .image-inner {
            position: relative;
            border-radius: 27px;
            overflow: hidden;
            background: #fff;
        }

        .image-card img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }

        .image-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 35px 70px -15px rgba(0, 0, 0, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                0 0 60px rgba(var(--theme-primary-rgb), 0.4);
        }

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

        /* Dekoratif Elementler */
        .decorative-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.3;
            animation: float 8s ease-in-out infinite;
        }

        .blob-1 {
            width: 300px;
            height: 300px;
            background: var(--theme-primary);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .blob-2 {
            width: 250px;
            height: 250px;
            background: #ec4899;
            bottom: -80px;
            left: -80px;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* Accordion Modern Stil */
        .accordion {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .accordion-item {
            border: none;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.1),
                0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(10px);
        }

        .accordion-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 6px;
            background: linear-gradient(180deg, var(--theme-primary) 0%, rgba(var(--theme-primary-rgb), 0.6) 100%);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accordion-item:hover {
            transform: translateX(10px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(var(--theme-primary-rgb), 0.1);
        }

        .accordion-item:hover::before {
            transform: scaleY(1);
        }

        /* Accordion Header */
        .accordion-header {
            margin: 0;
        }

        .accordion-button {
            padding: 28px 30px;
            background: transparent;
            border: none;
            color: var(--theme-dark);
            font-size: 17px;
            font-weight: 600;
            transition: all 0.4s ease;
            box-shadow: none !important;
            position: relative;
            overflow: hidden;
        }

        .accordion-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--theme-primary) 0%, rgba(var(--theme-primary-rgb), 0.9) 100%);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            z-index: 0;
        }

        .accordion-button:not(.collapsed)::before {
            transform: translateX(0);
        }

        .accordion-button:not(.collapsed) {
            color: #fff;
            box-shadow: 0 8px 25px rgba(var(--theme-primary-rgb), 0.4) !important;
        }

        .accordion-button > * {
            position: relative;
            z-index: 1;
        }

        .accordion-button::after {
            display: none;
        }

        /* Icon Stil */
        .accordion-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--theme-primary) 0%, rgba(var(--theme-primary-rgb), 0.8) 100%);
            color: #fff;
            border-radius: 15px;
            margin-right: 20px;
            font-size: 22px;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 
                0 8px 20px rgba(var(--theme-primary-rgb), 0.3),
                inset 0 -3px 0 rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .accordion-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }

        .accordion-item:hover .accordion-icon::before {
            width: 100px;
            height: 100px;
        }

        .accordion-button:not(.collapsed) .accordion-icon {
            background: #fff;
            color: var(--theme-primary);
            transform: rotate(360deg) scale(1.15);
            box-shadow: 
                0 0 0 4px rgba(255, 255, 255, 0.3),
                0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .accordion-icon i {
            position: relative;
            z-index: 1;
        }

        /* Arrow Icon */
        .accordion-arrow {
            margin-left: auto;
            width: 40px;
            height: 40px;
            min-width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(var(--theme-primary-rgb), 0.1);
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .accordion-button:not(.collapsed) .accordion-arrow {
            background: rgba(255, 255, 255, 0.25);
            transform: rotate(180deg);
        }

        .accordion-arrow i {
            font-size: 16px;
            transition: all 0.3s;
        }

        /* Header Text */
        .accordion-headerText {
            flex: 1;
            line-height: 1.6;
            letter-spacing: 0.3px;
        }

        /* Accordion Body */
        .accordion-collapse {
            transition: all 0.4s ease;
        }

        .accordion-body {
            padding: 0 30px 30px 100px;
            color: #64748b;
            font-size: 16px;
            line-height: 1.8;
            animation: fadeInUp 0.6s ease;
        }

        .accordion-body p {
            margin: 0;
            letter-spacing: 0.3px;
        }

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

        /* Pulse Effect */
        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 8px 20px rgba(var(--theme-primary-rgb), 0.3);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 12px 30px rgba(var(--theme-primary-rgb), 0.5);
            }
        }

        .accordion-item:hover .accordion-icon {
            animation: pulse 2s infinite;
        }

        /* Gradient Text Effect */
        .gradient-text {
            background: linear-gradient(135deg, var(--theme-primary) 0%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .faq {
                padding: 60px 0;
            }

            .image-card {
                margin-bottom: 50px;
            }

            .accordion-body {
                padding: 0 25px 25px 25px;
            }

            .accordion-icon {
                width: 45px;
                height: 45px;
                min-width: 45px;
                font-size: 20px;
                margin-right: 18px;
            }

            .blob-1, .blob-2 {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .faq {
                padding: 40px 0;
            }

            .accordion-button {
                padding: 22px 20px;
                font-size: 16px;
            }

            .accordion-icon {
                width: 40px;
                height: 40px;
                min-width: 40px;
                font-size: 18px;
                margin-right: 15px;
                border-radius: 12px;
            }

            .accordion-arrow {
                width: 35px;
                height: 35px;
                min-width: 35px;
            }

            .accordion-body {
                padding: 0 20px 20px 20px;
                font-size: 15px;
            }

            .image-card {
                border-radius: 20px;
            }

            .image-inner {
                border-radius: 17px;
            }
        }

        @media (max-width: 576px) {
            body {
                padding: 20px 0;
            }

            .accordion-button {
                padding: 18px 15px;
                font-size: 15px;
            }

            .accordion-icon {
                width: 36px;
                height: 36px;
                min-width: 36px;
                font-size: 16px;
                margin-right: 12px;
                border-radius: 10px;
            }

            .accordion-arrow {
                width: 32px;
                height: 32px;
                min-width: 32px;
            }

            .accordion-arrow i {
                font-size: 14px;
            }

            .accordion-body {
                padding: 0 15px 18px 15px;
                font-size: 14px;
            }

            .accordion-item {
                border-radius: 16px;
                gap: 16px;
            }
        }

        /* Loading Animation */
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        .col-lg-6:first-child {
            animation: slideInLeft 0.8s ease-out;
        }

        .col-lg-6:last-child {
            animation: slideInRight 0.8s ease-out;
        }

        .accordion-item {
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .accordion-item:nth-child(1) { animation-delay: 0.1s; }
        .accordion-item:nth-child(2) { animation-delay: 0.2s; }
        .accordion-item:nth-child(3) { animation-delay: 0.3s; }
        .accordion-item:nth-child(4) { animation-delay: 0.4s; }
        .accordion-item:nth-child(5) { animation-delay: 0.5s; }
		
		/* Sık Sorulan Sorular SOn*/
		
		/*Hizmetler Başlangıç*/
		/* ================================================
   Benzersiz Hizmetler Showcase Tasarımı
   ================================================ */

/* Ana Section */
.services-showcase-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

.services-showcase-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--theme-primary);
    opacity: 0.03;
    border-radius: 50%;
    filter: blur(100px);
    animation: floatingBubble 18s ease-in-out infinite;
}

.services-showcase-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: var(--theme-primary);
    opacity: 0.04;
    border-radius: 50%;
    filter: blur(120px);
    animation: floatingBubble 22s ease-in-out infinite reverse;
}

@keyframes floatingBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.2); }
}

/* Card Container */
.service-showcase-card {
    position: relative;
    height: 100%;
    margin-bottom: 35px;
    opacity: 0;
    animation: cardFadeIn 0.7s ease-out forwards;
}

.service-showcase-card:nth-child(1) { animation-delay: 0.1s; }
.service-showcase-card:nth-child(2) { animation-delay: 0.2s; }
.service-showcase-card:nth-child(3) { animation-delay: 0.3s; }
.service-showcase-card:nth-child(4) { animation-delay: 0.4s; }
.service-showcase-card:nth-child(5) { animation-delay: 0.5s; }
.service-showcase-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Visual Wrapper */
.service-visual-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.service-image-link {
    display: block;
    text-decoration: none;
}

.service-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--theme-primary) 0%, rgba(0, 0, 0, 0.85) 100%);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-showcase-card:hover .service-image-container {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(var(--theme-primary), 0.2),
        0 0 50px rgba(var(--theme-primary), 0.3);
}

/* Image Overlay */
.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-showcase-card:hover .service-image-overlay {
    opacity: 1;
}

/* Main Image */
.service-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-showcase-card:hover .service-main-image {
    transform: scale(1.2);
}

/* Hover Icon */
.service-hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-45deg);
    width: 80px;
    height: 80px;
    background: var(--theme-primary);
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 50%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
	content: url(tema/genel/uploads/hizmetler/etimesgut-su-aritma.png);
}

.service-showcase-card:hover .service-hover-icon {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

/* Shine Effect */
.service-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    transition: left 0.8s ease;
    z-index: 3;
}

.service-showcase-card:hover .service-image-container::before {
    left: 100%;
}

/* Info Wrapper */
.service-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 8px;
}

/* Title Container */
.service-title-container {
    flex: 1;
    min-width: 0;
}

.service-heading-text {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.service-title-link {
    color: #1e293b;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.service-title-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--theme-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-showcase-card:hover .service-title-link {
    color: var(--theme-primary);
}

.service-showcase-card:hover .service-title-link::after {
    width: 100%;
}

/* Action Container */
.service-action-container {
    flex-shrink: 0;
}

.service-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--theme-primary) 0%, rgba(0, 0, 0, 0.9) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 
        0 10px 30px rgba(var(--theme-primary), 0.35),
        inset 0 -3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

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

.service-showcase-card:hover .service-explore-btn::before {
    width: 200px;
    height: 200px;
}

.service-explore-btn .btn-text,
.service-explore-btn .btn-icon {
    position: relative;
    z-index: 1;
}

.service-explore-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.service-showcase-card:hover .service-explore-btn {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(var(--theme-primary), 0.5),
        inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.service-showcase-card:hover .service-explore-btn .btn-icon {
    transform: translateX(5px);
}

/* Pagination Styles */
.custom-pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.pagination-prev-item,
.pagination-next-item,
.pagination-number-item {
    margin: 0;
}

.pagination-link,
.pagination-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    height: 55px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    color: #1e293b;
    text-decoration: none;
    border-radius: 18px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.pagination-nav-link {
    width: 55px;
    padding: 0;
}

.pagination-link::before,
.pagination-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--theme-primary) 0%, rgba(0, 0, 0, 0.95) 100%);
    transform: scale(0);
    transition: transform 0.4s ease;
    border-radius: 18px;
}

.pagination-link:hover,
.pagination-nav-link:hover,
.pagination-link.is-active {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(var(--theme-primary), 0.4),
        0 0 0 1px rgba(var(--theme-primary), 0.1);
}

.pagination-link:hover::before,
.pagination-nav-link:hover::before,
.pagination-link.is-active::before {
    transform: scale(1);
}

.pagination-link span,
.pagination-link i,
.pagination-nav-link i {
    position: relative;
    z-index: 1;
}

/* Empty State Notice */
.empty-state-notice {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: none;
    border-left: 6px solid #f59e0b;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    animation: noticeSlideIn 0.6s ease-out;
}

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

.notice-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 28px;
    box-shadow: 
        0 10px 30px rgba(245, 158, 11, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.notice-content-wrapper {
    flex: 1;
}

.notice-title {
    margin: 0 0 12px 0;
    font-size: 22px;
    font-weight: 700;
    color: #f59e0b;
}

.notice-title strong {
    display: block;
}

.notice-description {
    margin: 0 0 8px 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.notice-description:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .service-heading-text {
        font-size: 20px;
    }
    
    .service-explore-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .services-showcase-section {
        padding: 70px 0;
    }
    
    .service-heading-text {
        font-size: 19px;
    }
    
    .service-explore-btn {
        padding: 13px 22px;
    }
    
    .pagination-link,
    .pagination-nav-link {
        min-width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .pagination-nav-link {
        width: 50px;
    }
}

@media (max-width: 767px) {
    .services-showcase-section {
        padding: 50px 0;
    }
    
    .service-showcase-card {
        margin-bottom: 30px;
    }
    
    .service-image-container {
        border-radius: 25px;
    }
    
    .service-info-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .service-heading-text {
        font-size: 18px;
    }
    
    .service-explore-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .service-hover-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .service-image-container {
        border-radius: 22px;
    }
    
    .service-heading-text {
        font-size: 17px;
    }
    
    .service-explore-btn {
        padding: 13px 20px;
        font-size: 14px;
    }
    
    .service-hover-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
    
    .custom-pagination-list {
        gap: 10px;
    }
    
    .pagination-link,
    .pagination-nav-link {
        min-width: 48px;
        height: 48px;
        font-size: 15px;
        border-radius: 15px;
    }
    
    .pagination-nav-link {
        width: 48px;
    }
    
    .empty-state-notice {
        flex-direction: column;
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .notice-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .notice-title {
        font-size: 20px;
    }
    
    .notice-description {
        font-size: 15px;
    }
}

/* Pulse Animation */
@keyframes cardPulse {
    0%, 100% {
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.12),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 25px 60px rgba(var(--theme-primary), 0.2),
            0 0 0 1px rgba(var(--theme-primary), 0.2);
    }
}

.service-showcase-card:hover .service-image-container {
    animation: cardPulse 2s infinite;
}

/* Loading State */
.service-showcase-card.is-loading {
    pointer-events: none;
    opacity: 0.5;
}

.service-showcase-card.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin: -22.5px 0 0 -22.5px;
    border: 4px solid var(--theme-primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinLoader 0.9s linear infinite;
    z-index: 100;
}

@keyframes spinLoader {
    to { transform: rotate(360deg); }
}
/*Hizmetler Son*/


/*Header Baslangıc */
/* ==================== ELITE HEADER SYSTEM ==================== */
        
        .elite-header-system * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .elite-header-system {
            font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
            position: relative;
        }

        /* Header wrapper absolute positioning için */
        .elite-header-system > .elite-header-top,
        .elite-header-system > .elite-header-main {
            width: 100%;
        }

        /* ==================== FLOATING SOCIAL BUTTONS ==================== */
        .elite-social-float {
            position: fixed;
            right: 30px;
            bottom: 30px;
            z-index: 99999;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .elite-social-btn {
            width: 60px;
            height: 60px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            position: relative;
            overflow: hidden;
        }

        .elite-social-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .elite-social-btn:hover::before {
            opacity: 1;
        }

        .elite-social-btn:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 16px 40px rgba(0,0,0,0.2);
        }

        .elite-social-btn a {
            color: #fff;
            font-size: 24px;
            text-decoration: none;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .elite-social-btn.elite-phone { background: linear-gradient(135deg, #10b981, #059669); }
        .elite-social-btn.elite-telegram { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
        .elite-social-btn.elite-whatsapp { background: linear-gradient(135deg, #22c55e, #16a34a); }
        .elite-social-btn.elite-instagram { background: linear-gradient(135deg, #ec4899, #f43f5e); }

        .elite-tip {
            position: absolute;
            right: 75px;
            background: linear-gradient(135deg, #1e293b, #334155);
            color: #fff;
            padding: 10px 16px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        .elite-tip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 6px 0 6px 6px;
            border-color: transparent transparent transparent #1e293b;
        }

        .elite-social-btn:hover .elite-tip {
            opacity: 1;
            right: 80px;
        }

        /* ==================== PRELOADER ==================== */
        .elite-preloader {
            position: fixed;
            inset: 0;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999999;
            transition: all 0.5s ease;
        }

        .elite-preloader.elite-hide {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .elite-loader {
            width: 60px;
            height: 60px;
            border: 4px solid #e2e8f0;
            border-top-color: #3b82f6;
            border-bottom-color: #3b82f6;
            border-radius: 50%;
            animation: elite-spin 1s ease-in-out infinite;
        }

        @keyframes elite-spin {
            to { transform: rotate(360deg); }
        }

        /* ==================== SEARCH MODAL ==================== */
        .elite-search-modal {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(12px);
            z-index: 99998;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .elite-search-modal.elite-show {
            opacity: 1;
            visibility: visible;
        }

        .elite-search-container {
            width: 90%;
            max-width: 700px;
            transform: scale(0.95);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .elite-search-modal.elite-show .elite-search-container {
            transform: scale(1);
        }

        .elite-search-box {
            background: #fff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 25px 80px rgba(0,0,0,0.3);
        }

        .elite-search-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            color: #fff;
            transition: all 0.3s ease;
        }

        .elite-search-close:hover {
            background: #fff;
            color: #1e293b;
            transform: rotate(90deg);
        }

        .elite-search-title {
            font-size: 24px;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 24px;
            text-align: center;
        }

        .elite-search-form {
            position: relative;
        }

        .elite-search-input {
            width: 100%;
            padding: 18px 70px 18px 24px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 500;
        }

        .elite-search-input:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }

        .elite-search-submit {
            position: absolute;
            right: 6px;
            top: 6px;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .elite-search-submit:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
        }

        /* ==================== QUOTE MODAL ==================== */
        .elite-quote-modal {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(12px);
            z-index: 99998;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            overflow-y: auto;
            padding: 20px;
        }

        .elite-quote-modal.elite-show {
            opacity: 1;
            visibility: visible;
        }

        .elite-quote-container {
            width: 90%;
            max-width: 600px;
            transform: scale(0.95);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            margin: auto;
        }

        .elite-quote-modal.elite-show .elite-quote-container {
            transform: scale(1);
        }

        .elite-quote-box {
            background: #fff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 25px 80px rgba(0,0,0,0.3);
            position: relative;
        }

        /* ==================== TAB SISTEMI ==================== */
        .elite-quote-tabs {
            display: flex;
            gap: 0;
            margin-bottom: 32px;
            border-bottom: 2px solid #e2e8f0;
        }

        .elite-quote-tab {
            flex: 1;
            padding: 16px 20px;
            text-align: center;
            cursor: pointer;
            background: #f8fafc;
            border: none;
            font-weight: 600;
            font-size: 14px;
            color: #94a3b8;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
        }

        .elite-quote-tab:hover {
            color: var(--theme-primary);
            background: #f1f5f9;
        }

        .elite-quote-tab.active {
            color: #fff;
            background: linear-gradient(135deg, var(--theme-primary), var(--theme-dark)) !important;
            border-bottom-color: var(--theme-primary);
        }

        .elite-quote-tab i {
            margin-right: 8px;
        }

        .elite-quote-content {
            display: none;
        }

        .elite-quote-content.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

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

        /* WhatsApp Chat Area */
        .elite-chat-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-height: 400px;
        }

        .elite-chat-messages {
            flex: 1;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 16px;
            overflow-y: auto;
            background: #f8fafc;
            min-height: 250px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .elite-chat-message {
            display: flex;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 8px;
            max-width: 80%;
        }

        .elite-chat-message.sent {
            align-self: flex-end;
            background: linear-gradient(135deg, var(--theme-primary), var(--theme-dark));
            color: #fff;
        }

        .elite-chat-message.received {
            align-self: flex-start;
            background: #e2e8f0;
            color: #334155;
        }

        .elite-chat-input-group {
            display: flex;
            gap: 10px;
        }

        .elite-chat-input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 14px;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .elite-chat-input:focus {
            outline: none;
            border-color: var(--theme-primary);
        }

        .elite-chat-send {
            width: 44px;
            height: 44px;
            border: 2px solid var(--theme-primary);
            background: linear-gradient(135deg, var(--theme-primary), var(--theme-dark));
            color: #fff;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .elite-chat-send:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px var(--theme-primary);
        }

        /* Phone Section */
        .elite-phone-display {
            text-align: center;
        }

        .elite-phone-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--theme-primary);
            margin: 20px 0;
            font-family: monospace;
        }

        .elite-phone-call-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #22c55e, #16a34a);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .elite-phone-call-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
        }

        /* WhatsApp Section */
        .elite-whatsapp-display {
            text-align: center;
        }

        .elite-whatsapp-number {
            font-size: 32px;
            font-weight: 700;
            color: #25d366;
            margin: 20px 0;
            font-family: monospace;
        }

        .elite-whatsapp-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .elite-whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }

        .elite-quote-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: #f1f5f9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            color: #64748b;
            transition: all 0.3s ease;
            border: none;
        }

        .elite-quote-close:hover {
            background: #e2e8f0;
            transform: rotate(90deg);
        }

        .elite-quote-title {
            font-size: 28px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .elite-quote-subtitle {
            font-size: 14px;
            color: #64748b;
            margin-bottom: 32px;
        }

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

        .elite-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .elite-form-label {
            font-size: 14px;
            font-weight: 600;
            color: #334155;
        }

        .elite-form-input,
        .elite-form-select,
        .elite-form-textarea {
            width: 100%;
            padding: 14px 18px;
            font-size: 15px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            outline: none;
            transition: all 0.3s ease;
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #fff;
        }

        .elite-form-input:focus,
        .elite-form-select:focus,
        .elite-form-textarea:focus {
            border-color: #30b066;
            box-shadow: 0 0 0 4px rgba(48, 176, 102, 0.1);
        }

        .elite-form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .elite-form-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #30b066, #34bd6b);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Plus Jakarta Sans', sans-serif;
            margin-top: 8px;
        }

        .elite-form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(48, 176, 102, 0.3);
        }

        /* Teklif Al Butonu */
        .elite-quote-btn {
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--theme-primary), var(--theme-gradient-end)) !important;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
            border: 2px solid transparent;
            height: 46px;
        }

        .elite-quote-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px var(--theme-primary) !important;
        }

        /* Scroll olduğunda teklif al butonu */
        .elite-header-main.elite-scrolled .elite-quote-btn {
            background: linear-gradient(135deg, var(--theme-primary), var(--theme-gradient-end)) !important;
            border-color: transparent;
        }

        .elite-header-main.elite-scrolled .elite-quote-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px var(--theme-primary) !important;
        }

        /* ==================== HEADER TOP ==================== */
        .elite-header-top {
            background: linear-gradient(135deg, #0a1f34 0%, #1a4d3e 50%, #34bd6b 100%);
            padding: 18px 0;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(52, 189, 107, 0.3);
            z-index: 10001 !important; /* FIX: Üstteki butonlara tıklanabilir yapmak için */
        }

        /* Parlayan dalga efekti */
        .elite-header-top::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(52, 189, 107, 0.4) 0%, transparent 60%);
            animation: elite-top-glow 10s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes elite-top-glow {
            0%, 100% { transform: translate(-20%, -20%) scale(1); opacity: 0.4; }
            50% { transform: translate(20%, 20%) scale(1.3); opacity: 0.7; }
        }

        /* Işıldayan yıldız efekti */
        .elite-header-top::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(52, 189, 107, 0.5) 10%,
                rgba(52, 189, 107, 1) 25%, 
                rgba(255, 255, 255, 0.8) 50%, 
                rgba(52, 189, 107, 1) 75%,
                rgba(52, 189, 107, 0.5) 90%, 
                transparent 100%);
            box-shadow: 0 0 30px rgba(52, 189, 107, 0.8),
                        0 0 60px rgba(52, 189, 107, 0.4);
            animation: elite-top-shine 3s linear infinite;
        }

        @keyframes elite-top-shine {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }

        /* Nokta deseni */
        .elite-header-top {
            background-image: 
                linear-gradient(135deg, #0a1f34 0%, #1a4d3e 50%, #34bd6b 100%),
                radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 100%, 20px 20px;
        }

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

        .elite-container {
            max-width: 1400px;
            margin: -11px auto;
            padding: 0 24px;
        }

        .elite-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        /* Header Top'a renk butonunun yeri */
        .elite-header-top-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .elite-header-top .elite-header-color-wrapper {
            position: relative;
        }

        .elite-header-top .elite-header-color-btn {
            width: 40px !important;
            height: 40px !important;
            font-size: 16px;
            border-radius: 8px;
        }

        .elite-top-contact ul {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .elite-top-contact li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
            position: relative;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .elite-top-contact i {
            color: #34bd6b;
            font-size: 16px;
            animation: elite-icon-glow 2s ease-in-out infinite;
            filter: drop-shadow(0 0 8px rgba(52, 189, 107, 0.6));
        }

        @keyframes elite-icon-glow {
            0%, 100% { 
                transform: scale(1);
                filter: drop-shadow(0 0 8px rgba(52, 189, 107, 0.6));
            }
            50% { 
                transform: scale(1.15);
                filter: drop-shadow(0 0 12px rgba(52, 189, 107, 0.9));
            }
        }
        }

        .elite-top-contact i {
            color: #34bd6b;
            font-size: 16px;
            animation: elite-icon-glow 2s ease-in-out infinite;
            filter: drop-shadow(0 0 8px rgba(52, 189, 107, 0.6));
        }

        @keyframes elite-icon-glow {
            0%, 100% { 
                transform: scale(1);
                filter: drop-shadow(0 0 8px rgba(52, 189, 107, 0.6));
            }
            50% { 
                transform: scale(1.1);
                filter: drop-shadow(0 0 12px rgba(52, 189, 107, 0.9));
            }
        }

        .elite-top-contact a {
            color: #f0f9ff;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .elite-top-contact a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #34bd6b, #22d3ee);
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(52, 189, 107, 0.8);
        }

        .elite-top-contact a:hover {
            color: #34bd6b;
            text-shadow: 0 0 10px rgba(52, 189, 107, 0.5);
        }

        .elite-top-contact a:hover::after {
            width: 100%;
        }

        .elite-top-contact .elite-work-hours span {
            color: #f0f9ff;
            font-weight: 600;
        }

        .elite-top-menu ul {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .elite-top-menu a {
            color: #f0f9ff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(52, 189, 107, 0.3);
            position: relative;
            overflow: hidden;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            cursor: pointer;
        }

        .elite-top-menu a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(52, 189, 107, 0.4), rgba(52, 189, 107, 0.2));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .elite-top-menu a:hover::before {
            opacity: 1;
        }

        .elite-top-menu a i {
            position: relative;
            z-index: 1;
            color: #34bd6b;
            filter: drop-shadow(0 0 6px rgba(52, 189, 107, 0.8));
            font-size: 15px;
        }

        .elite-top-menu a:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 4px 16px rgba(52, 189, 107, 0.4);
            border-color: rgba(52, 189, 107, 0.6);
            color: #fff;
        }

        .elite-top-menu a:active {
            transform: translateY(0) scale(0.98);
        }

        .elite-top-menu a span {
            position: relative;
            z-index: 1;
        }

        .elite-top-menu a span {
            position: relative;
            z-index: 1;
        }

        .elite-top-menu a:hover {
            color: #fff;
            border-color: #34bd6b;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(52, 189, 107, 0.4);
        }

        /* ==================== MAIN HEADER ==================== */
        .elite-header-main {
            background: transparent;
            backdrop-filter: none;
            box-shadow: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999; /* FIX: header-top'dan (10001) düşük tutuldu */
            transition: all 0.3s ease;
        }

        .elite-header-main.elite-scrolled {
            position: fixed;
            background: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-mid)) !important;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px var(--theme-primary) !important;
        }

        .elite-header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 0;
        }

        /* Actions ve toggle'ı grupla */
        .elite-header-content > div:last-child {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .elite-logo {
            position: relative;
            background: transparent;
            padding: 0;
            border-radius: 12px;
            backdrop-filter: none;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        .elite-logo img {
            height: 52px;
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
        }

        .elite-logo:hover img {
            transform: translateY(-2px);
            filter: drop-shadow(0 4px 16px rgba(48, 176, 102, 0.4));
        }

        /* Scroll olduğunda logo arka planı kaybolsun */
        .elite-header-main.elite-scrolled .elite-logo {
            background: transparent;
            box-shadow: none;
            padding: 0;
        }

        /* ==================== NAVIGATION ==================== */
        .elite-nav {
            display: flex;
            align-items: center;
            gap: 48px;
        }

        /* Masaüstünde nav-footer gizli */
        .elite-nav-footer {
            display: none;
        }

        .elite-menu {
            display: flex;
            list-style: none;
            gap: 8px;
            margin: 0;
        }

        .elite-menu-item {
            position: relative;
        }

        .elite-menu-link {
            color: #ffffff;
            text-decoration: none;
            padding: 12px 20px;
            display: block;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border-radius: 12px;
            position: relative;
            background: transparent;
            backdrop-filter: none;
            box-shadow: none;
            border: 2px solid var(--theme-primary) !important;
        }

        .elite-menu-link::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--theme-primary), var(--theme-gradient-end)) !important;
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 3px;
        }

        .elite-menu-item:hover .elite-menu-link {
            color: #ffffff;
            background: var(--theme-primary) !important;
            background: rgba(var(--theme-rgb), 0.2) !important;
            border-color: var(--theme-primary) !important;
        }

        .elite-menu-item:hover .elite-menu-link::after {
            width: 60%;
        }

        /* Menu Link İkonları */
        .elite-menu-link i {
            color: #fff !important;
            transition: all 0.3s ease;
            margin-right: 8px;
        }

        .elite-menu-item:hover .elite-menu-link i {
            color: var(--theme-primary) !important;
            text-shadow: 0 0 10px var(--theme-primary) !important;
        }

        /* Scroll durumundaki ikonlar */
        .elite-header-main.elite-scrolled .elite-menu-link i {
            color: #fff !important;
        }

        .elite-header-main.elite-scrolled .elite-menu-item:hover .elite-menu-link i {
            color: var(--theme-primary) !important;
            text-shadow: 0 0 10px var(--theme-primary) !important;
        }
        .elite-header-main.elite-scrolled .elite-menu-link {
            background: transparent;
            box-shadow: none;
            color: #ffffff;
            border-color: var(--theme-primary) !important;
        }

        .elite-header-main.elite-scrolled .elite-menu-item:hover .elite-menu-link {
            background: rgba(var(--theme-rgb), 0.1) !important;
            color: #fff;
        }

        /* ==================== DROPDOWN ==================== */
         /* ==================== DROPDOWN - ULTRA SMOOTH & COLORFUL ==================== */
        .elite-dropdown {
            position: relative;
        }

        /* Ana menü dropdown'ı - masaüstü için */
        .elite-menu-item.elite-dropdown > .elite-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 260px;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 12px;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px var(--theme-primary);
            margin: 0;
            margin-top: 8px;
            z-index: 1000;
        }

        .elite-menu-item.elite-dropdown:hover > .elite-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        /* İç içe dropdown'lar */
        .elite-dropdown-item.elite-dropdown {
            position: relative;
        }

        .elite-dropdown-item.elite-dropdown > .elite-dropdown-menu {
            position: absolute;
            top: 0;
            left: 100%;
            min-width: 240px;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 12px;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateX(20px) scale(0.95);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px var(--theme-primary);
            margin: 0;
            margin-left: 8px;
            z-index: 1001;
        }

        .elite-dropdown-item.elite-dropdown:hover > .elite-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0) scale(1);
        }

        .elite-dropdown-item a {
            color: #fff;
            text-decoration: none;
            padding: 12px 16px;
            display: block;
            border-radius: 10px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 14px;
            font-weight: 500;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        /* Neon glow background */
        .elite-dropdown-item a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 300%;
            height: 100%;
            background: linear-gradient(90deg, var(--theme-primary), #000, var(--theme-primary));
            background-size: 300% 100%;
            border-radius: 12px;
            filter: blur(10px);
            opacity: 0;
            transition: opacity 0.35s ease;
            z-index: -1;
        }

        .elite-dropdown-item a:hover::before {
            opacity: 0.8;
            animation: neonFlow 3s linear infinite;
        }

        /* Shine efekti */
        .elite-dropdown-item a::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
            transform: skewX(-25deg);
            transition: all 0.5s ease;
        }

        .elite-dropdown-item a:hover::after {
            left: 150%;
        }

        .elite-dropdown-item a i {
            color: #fff !important;
            margin-right: 8px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .elite-dropdown-item a:hover {
            background: transparent;
            color: #fff;
            padding-left: 20px;
            border-color: var(--theme-primary);
            box-shadow: 0 0 15px var(--theme-primary), 0 0 25px #000;
            transform: translateX(5px);
        }

        .elite-dropdown-item a:hover i {
            color: #fff !important;
            text-shadow: 0 0 10px var(--theme-primary), 0 0 20px #000 !important;
            transform: rotate(360deg) scale(1.15);
        }

        /* Alt dropdown göstergesi */
        .elite-dropdown-item.elite-dropdown > a::after {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 16px;
            font-size: 10px;
            opacity: 0.5;
            transition: all 0.4s ease;
            background: none !important;
            transform: none !important;
        }

        .elite-dropdown-item.elite-dropdown:hover > a::after {
            opacity: 1;
            right: 12px;
            text-shadow: 0 0 10px var(--theme-primary);
        }

        /* ==================== ACTION BUTTONS ==================== */
        /* ==================== ACTION BUTTONS - NEON GLOW EFFECT ==================== */
        .elite-actions {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .elite-action-btn {
            width: 46px;
            height: 46px;
            background: transparent;
            backdrop-filter: none;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            color: #ffffff;
            text-decoration: none;
            position: relative;
            border: 2px solid var(--theme-primary) !important;
            font-weight: 600;
            font-size: 16px;
            box-shadow: none;
            overflow: hidden;
        }

        /* Neon glow arka plan efekti */
        .elite-action-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 300%;
            height: 100%;
            background: linear-gradient(90deg, var(--theme-primary), #000, var(--theme-primary));
            background-size: 300% 100%;
            border-radius: 16px;
            filter: blur(15px);
            opacity: 0;
            transition: opacity 0.35s ease;
            z-index: -1;
        }

        .elite-action-btn:hover::before {
            opacity: 1;
            animation: neonFlow 3s linear infinite;
        }

        /* Shine efekti */
        .elite-action-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(120deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
            transform: skewX(-25deg);
            transition: all 0.5s ease;
        }

        .elite-action-btn:hover::after {
            left: 150%;
        }

        .elite-action-btn i {
            color: #fff !important;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .elite-action-btn:hover {
            background: transparent;
            color: #fff;
            transform: translateY(-5px) scale(1.08);
            box-shadow: 0 0 20px var(--theme-primary), 0 0 40px #000, 0 8px 24px rgba(0,0,0,0.3);
            border-color: var(--theme-primary) !important;
        }

        .elite-action-btn:hover i {
            color: #fff !important;
            text-shadow: 0 0 10px var(--theme-primary), 0 0 20px #000;
            transform: rotate(360deg) scale(1.15);
        }

        .elite-action-btn:active {
            transform: translateY(-3px) scale(1.02);
        }

        /* Scroll olduğunda butonlar */
        .elite-header-main.elite-scrolled .elite-action-btn {
            background: transparent;
            box-shadow: none;
            color: #ffffff;
            border-color: var(--theme-primary) !important;
        }

        .elite-header-main.elite-scrolled .elite-action-btn i {
            color: #fff !important;
        }

        .elite-header-main.elite-scrolled .elite-action-btn:hover {
            background: transparent;
            color: #fff;
            transform: translateY(-5px) scale(1.08);
            box-shadow: 0 0 20px var(--theme-primary), 0 0 40px #000, 0 8px 24px rgba(0,0,0,0.3);
        }

        .elite-header-main.elite-scrolled .elite-action-btn:hover i {
            color: #fff !important;
            text-shadow: 0 0 10px var(--theme-primary), 0 0 20px #000;
            transform: rotate(360deg) scale(1.15);
        }

        .elite-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            min-width: 22px;
            height: 22px;
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid transparent;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
        }

        /* ==================== MOBILE ==================== */
       .elite-mobile-toggle {
            display: flex;
            flex-direction: column;
            gap: 7px;
            cursor: pointer;
            padding: 12px;
            background: transparent;
            border-radius: 14px;
            border: 2px solid #30b066;
            transition: all 0.3s ease;
            position: relative;
            z-index: 10000;
            width: 46px;
            height: 46px;
            align-items: center;
            justify-content: center;
        }

        .elite-mobile-toggle span {
            width: 28px;
            height: 4px;
            background: #ffffff;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .elite-mobile-toggle:hover {
            background: rgba(48, 176, 102, 0.2);
        }

        /* Menü açıkken X olsun */
        .elite-mobile-toggle.elite-active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

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

        .elite-mobile-toggle.elite-active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .elite-mobile-bar {
            display: none;
            gap: 12px;
        }

        /* ==================== INFO SIDEBAR (Desktop) ==================== */
        .elite-info-sidebar {
            position: fixed;
            top: 0;
            left: -400px;
            width: 400px;
            height: 100vh;
            background: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-mid), var(--theme-gradient-end)) !important;
            z-index: 9998;
            padding: 40px 30px;
            overflow-y: auto;
            transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 4px 0 40px rgba(0,0,0,0.3);
        }

        .elite-info-sidebar.elite-open {
            left: 0;
        }

        .elite-info-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .elite-info-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .elite-info-header {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        }

        .elite-info-header h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .elite-info-header p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.6;
        }

        .elite-info-section {
            margin-bottom: 35px;
        }

        .elite-info-section h4 {
            color: #30b066;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .elite-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .elite-info-item:hover {
            background: rgba(var(--theme-rgb), 0.15);
            transform: translateX(5px);
        }

        .elite-info-item i {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(var(--theme-rgb), 0.2);
            border-radius: 10px;
            color: #fff !important;
            font-size: 18px;
            flex-shrink: 0;
        }

        .elite-info-item:hover i {
            color: var(--theme-primary) !important;
            text-shadow: 0 0 10px var(--theme-primary) !important;
        }

        .elite-info-item-value a:hover {
            color: var(--theme-primary) !important;
        }

        .elite-info-social {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .elite-info-social a {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: #fff;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .elite-info-social a:hover {
            background: rgba(48, 176, 102, 0.3);
            border-color: #30b066;
            transform: translateY(-3px);
        }

        /* Mobilde z-index ayarları */
        @media (max-width: 1100px) {
            .elite-mobile-bar,
            .elite-mobile-toggle {
                position: relative;
                z-index: 10001;
            }
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1100px) {
            /* Mobilde header relative - slider ile üst üste kalmasın */
            .elite-header-main {
                position: relative;
                background: #0a1f34;
            }

            /* Header Top Mobil */
            .elite-header-top {
                padding: 12px 0 !important;
            }

            .elite-header-top-right {
                gap: 12px !important;
            }

            .elite-header-top .elite-header-color-btn {
                width: 36px !important;
                height: 36px !important;
                font-size: 14px !important;
            }

            .elite-top-menu {
                display: none;
            }

            /* Mobil Menü Logo Stili */
            .elite-mobile-logo {
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 20px 24px;
                background: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-mid), var(--theme-gradient-end)) !important;
                border-bottom: 2px solid var(--theme-primary) !important;
                position: sticky;
                top: 0;
                z-index: 10;
                margin-bottom: 0;
            }

            .elite-mobile-logo a {
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .elite-mobile-logo img {
                height: 40px;
                display: block;
                filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
            }

            /* Nav için background ayarı */
            .elite-nav {
                background: linear-gradient(135deg, #0f2537 0%, #1a4d3e 100%);
            }

            /* Masaüstünde gizle */
            @media (min-width: 1101px) {
                .elite-mobile-logo {
                    display: none;
                }
            }

            .elite-header-main.elite-scrolled {
                position: fixed;
                top: 0;
                background: rgba(10, 31, 52, 0.98);
            }

            /* Header top mobilde göster ama sadeleştir */
            .elite-header-top {
                display: block;
                padding: 10px 0;
                position: relative;
            }

            /* Top menu linklerini gizle (sipariş takibi vs) */
            .elite-top-menu {
                display: none;
            }

            /* Top contact'ı ortala ve tek satıra al */
            .elite-flex {
                justify-content: center;
            }

            .elite-top-contact ul {
                flex-direction: row;
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .elite-top-contact li {
                font-size: 13px;
            }

            /* Mobilde nav-footer göster */
            .elite-nav-footer {
                display: block;
                margin-top: auto;
                padding-top: 24px;
                border-top: 1px solid rgba(255, 255, 255, 0.2);
                width: 100%;
            }

            .elite-nav-contact {
                display: flex;
                flex-direction: column;
                gap: 16px;
                margin-bottom: 20px;
            }

            .elite-nav-contact-item {
                display: flex;
                align-items: center;
                gap: 12px;
                color: #ffffff;
                font-size: 14px;
                font-weight: 600;
            }

            .elite-nav-contact-item i {
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(48, 176, 102, 0.2);
                border-radius: 10px;
                color: #30b066;
                font-size: 16px;
            }

            .elite-nav-contact-item a {
                color: #ffffff;
                text-decoration: none;
            }

            .elite-nav-social {
                display: flex;
                gap: 12px;
                justify-content: center;
            }

            .elite-nav-social a {
                width: 48px;
                height: 48px;
                display: flex;
                align-items: center;
                justify-content: center;
                border: 2px solid var(--theme-primary) !important;
                border-radius: 12px;
                color: var(--theme-primary) !important;
                font-size: 18px;
                transition: all 0.3s ease;
            }

            .elite-nav-social a i {
                color: #fff !important;
            }

            .elite-nav-social a:hover {
                background: rgba(var(--theme-rgb), 0.3);
                border-color: var(--theme-primary) !important;
            }

            .elite-nav-social a:hover i {
                color: var(--theme-primary) !important;
                text-shadow: 0 0 10px var(--theme-primary) !important;
            }

            .elite-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 340px;
                height: 100vh;
                background: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-mid), var(--theme-gradient-end)) !important;
                flex-direction: column;
                align-items: flex-start;
                padding: 90px 24px 24px;
                box-shadow: 4px 0 40px rgba(0,0,0,0.15);
                transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
                overflow-y: auto;
                gap: 0;
                display: flex;
                z-index: 10000;
            }

            .elite-nav.elite-open {
                left: 0;
            }

            .elite-menu {
                flex-direction: column;
                width: 100%;
                gap: 10px;
                flex: 1;
                overflow-y: auto;
                padding-bottom: 20px;
            }

            .elite-menu-link {
                width: 100%;
                color: #ffffff;
                border-color: rgba(255, 255, 255, 0.3);
            }

            .elite-menu-item:hover .elite-menu-link {
                background: rgba(255, 255, 255, 0.15);
                border-color: #30b066;
            }

            /* Mobilde dropdown'ları düzelt */
            .elite-menu-item.elite-dropdown > .elite-dropdown-menu,
            .elite-dropdown-item.elite-dropdown > .elite-dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, padding 0.4s ease;
                margin-left: 16px;
                border: none;
                background: rgba(255, 255, 255, 0.1);
                padding: 0;
            }

            .elite-menu-item.elite-dropdown.elite-open > .elite-dropdown-menu,
            .elite-dropdown-item.elite-dropdown.elite-open > .elite-dropdown-menu {
                max-height: 1000px;
                padding: 12px;
            }

            .elite-dropdown-item a {
                color: #ffffff;
            }

            .elite-dropdown-item a:hover {
                background: rgba(255, 255, 255, 0.15);
                color: #ffffff;
            }

            /* Mobilde ok işaretini değiştir */
            .elite-dropdown-item.elite-dropdown > a::after {
                content: '\f078';
                right: 16px;
                color: #fff;
            }

            .elite-dropdown-item.elite-dropdown.elite-open > a::after {
                content: '\f077';
                right: 16px;
            }

            /* Mobilde action butonlarını menüde gizle */
            .elite-nav .elite-actions {
                display: none;
            }

            /* Menü içi iletişim bilgileri ekle */
            .elite-nav-footer {
                margin-top: auto;
                padding-top: 24px;
                border-top: 1px solid rgba(255, 255, 255, 0.2);
            }

            .elite-nav-contact {
                display: flex;
                flex-direction: column;
                gap: 16px;
                margin-bottom: 20px;
            }

            .elite-nav-contact-item {
                display: flex;
                align-items: center;
                gap: 12px;
                color: #ffffff;
                font-size: 14px;
                font-weight: 600;
            }

            .elite-nav-contact-item i {
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(48, 176, 102, 0.2);
                border-radius: 10px;
                color: #30b066;
                font-size: 16px;
            }

            .elite-nav-contact-item a {
                color: #ffffff;
                text-decoration: none;
            }

            .elite-nav-social {
                display: flex;
                gap: 12px;
                justify-content: center;
            }

            .elite-nav-social a {
                width: 48px;
                height: 48px;
                display: flex;
                align-items: center;
                justify-content: center;
                border: 2px solid rgba(255, 255, 255, 0.3);
                border-radius: 12px;
                color: #ffffff;
                font-size: 18px;
                transition: all 0.3s ease;
            }

            .elite-nav-social a:hover {
                background: rgba(48, 176, 102, 0.3);
                border-color: #30b066;
            }

            /* Mobilde actions ve toggle ayarları */
            .elite-actions {
                display: flex !important;
                gap: 8px !important;
                margin: 0 !important;
                width: auto !important;
            }

            .elite-action-btn {
                width: 46px !important;
                height: 46px !important;
                min-width: 46px !important;
                min-height: 46px !important;
            }

            .elite-mobile-toggle {
                display: flex !important;
                width: 46px !important;
                height: 46px !important;
                min-width: 46px !important;
                min-height: 46px !important;
                padding: 10px !important;
                background: transparent;
                border: 2px solid #30b066;
                position: relative;
                z-index: 10001;
            }

            .elite-mobile-toggle span {
                width: 22px !important;
                height: 2.5px !important;
                background: #ffffff;
            }

            .elite-mobile-bar {
                display: none !important;
            }

            /* Mobilde butonlar yan yana wrapper */
            .elite-header-content > div:last-child {
                display: flex !important;
                gap: 8px !important;
                align-items: center !important;
            }

            /* Mobilde header content padding'i azalt ve üstten boşluk kaldır */
            .elite-header-content {
                padding: 35px 0;
            }

            /* Mobil butonları küçült */
            .elite-mobile-bar .elite-action-btn {
                width: 38px;
                height: 38px;
                font-size: 13px;
            }

            .elite-mobile-toggle {
                padding: 6px;
            }

            .elite-mobile-toggle span {
                width: 22px;
                height: 2px;
            }

            /* Ana header'ın üstten boşluğu sıfır */
            .elite-header-main {
                margin-top: 0;
            }
        }

        @media (max-width: 640px) {
            .elite-social-float {
                right: 16px;
                bottom: 16px;
            }

            .elite-social-btn {
                width: 52px;
                height: 52px;
            }

            .elite-social-btn a {
                font-size: 20px;
            }

            .elite-logo img {
                height: 44px;
            }

            .elite-search-box {
                padding: 32px 24px;
            }

            .elite-search-title {
                font-size: 20px;
            }
        }

        /* ==================== OVERLAY ==================== */
        .elite-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(4px);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .elite-overlay.elite-show {
            opacity: 1;
            visibility: visible;
        }

        /* ==================== SCROLLBAR ==================== */
        .elite-nav::-webkit-scrollbar {
            width: 6px;
        }

        .elite-nav::-webkit-scrollbar-track {
            background: #f1f5f9;
        }

        .elite-nav::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }

        .elite-nav::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        /* ==================== MOBILE SMALL SCREENS ==================== */
        @media (max-width: 640px) {
            .elite-social-float {
                right: 15px;
                bottom: 15px;
            }

            .elite-social-btn {
                width: 48px;
                height: 48px;
            }

            .elite-social-btn a {
                font-size: 18px;
            }

            .elite-logo img {
                height: 40px;
            }

            .elite-search-box {
                padding: 32px 24px;
            }

            .elite-search-title {
                font-size: 20px;
            }

            .elite-quote-box {
                padding: 24px 20px;
            }

            .elite-quote-title {
                font-size: 22px;
            }

            .elite-quote-btn {
                padding: 10px 16px;
                font-size: 14px;
                height: 46px;
            }

            .elite-quote-btn span {
                display: none;
            }

            /* Mobilde header daha kompakt */
            .elite-header-content {
                padding: 1px 0 !important;
            }

            .elite-header-top {
                padding: 8px 0 !important;
            }

            /* Butonlar eşit ve yan yana */
            .elite-header-content > div:last-child {
                display: flex !important;
                gap: 8px !important;
            }

            /* Mobil hamburger menü - eşit boyut */
            .elite-mobile-toggle {
                width: 46px !important;
                height: 46px !important;
                padding: 10px !important;
            }

            .elite-mobile-toggle span {
                width: 22px !important;
                height: 2.5px !important;
            }

            /* Arama butonu - eşit boyut */
            .elite-action-btn {
                width: 46px !important;
                height: 46px !important;
            }

            /* Renk butonu - eşit boyut */
            .elite-header-color-btn {
                width: 46px !important;
                height: 46px !important;
                font-size: 16px;
            }

            /* Butonlar arasında uygun boşluk */
            .elite-actions {
                gap: 12px !important;
            }

            /* Top contact sadece ikonlar */
            .elite-top-contact ul {
                flex-direction: row;
                gap: 15px;
                flex-wrap: wrap;
            }

            .elite-top-contact li {
                font-size: 12px;
            }

            /* Container padding */
            .elite-container {
                padding: 16px 16px;
            }

            /* Hamburger küçült */
            .elite-mobile-toggle {
                padding: 8px;
            }

            /* Tab Sistemi Mobil */
            .elite-quote-tabs {
                margin-bottom: 20px;
            }

            .elite-quote-tab {
                padding: 12px 16px;
                font-size: 12px;
            }

            .elite-chat-messages {
                min-height: 200px;
                max-height: 300px;
            }

            .elite-phone-number,
            .elite-whatsapp-number {
                font-size: 24px;
            }
        }
    
        /* ==================== YENİ ÖZELLİKLER - SCROLL PROGRESS ==================== */
        .elite-scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, #30b066, #22a956);
            z-index: 999999;
            transition: width 0.1s ease-out;
            box-shadow: 0 0 10px #30b066;
        }

        /* ==================== RENK DEĞİŞTİRME - HEADER BUTONU ==================== */
        .elite-header-color-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .elite-header-color-btn {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--theme-primary), var(--theme-dark));
            border: 2px solid var(--theme-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .elite-header-color-btn i {
            color: #fff !important;
        }

        .elite-header-color-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 16px var(--theme-primary) !important;
        }

        .elite-header-color-dropdown {
            position: fixed !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            background: rgba(15, 23, 42, 0.98) !important;
            backdrop-filter: blur(20px);
            border: 2px solid var(--theme-primary);
            border-radius: 12px;
            padding: 16px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 999999 !important;
            min-width: 220px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.5);
        }

        .elite-header-color-dropdown.elite-show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .elite-header-color-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #f0f9ff;
            font-size: 14px;
            font-weight: 600;
            border: 2px solid transparent;
        }

        .elite-header-color-option:hover {
            background: rgba(52, 189, 107, 0.2);
            border-color: var(--theme-primary);
        }

        .elite-header-color-option.active {
            background: rgba(52, 189, 107, 0.3);
            border-color: var(--theme-primary);
            box-shadow: 0 0 12px rgba(52, 189, 107, 0.4);
        }

        .elite-header-color-dot {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            flex-shrink: 0;
            box-shadow: 0 0 8px rgba(0,0,0,0.3);
        }

        /* Aralarında boşluk - desktop */
        .elite-actions {
            display: flex;
            gap: 20px;
            align-items: center;
            position: relative;
        }

        /* ==================== YENİ ÖZELLİKLER - THEME SWITCHER ==================== */
        /* ==================== TEMA SİSTEMİ - TÜM RENKLER ==================== */
        :root {
            --theme-primary: #30b066;
            --theme-dark: #22a956;
            --theme-gradient-start: #0a1f34;
            --theme-gradient-mid: #1a4d3e;
            --theme-gradient-end: #34bd6b;
        }
        
        /* GREEN - Yeşil */
        [data-theme="green"] {
            --theme-primary: #30b066;
            --theme-dark: #22a956;
            --theme-gradient-start: #0a1f34;
            --theme-gradient-mid: #1a4d3e;
            --theme-gradient-end: #34bd6b;
        }
		
		
		  /* GREEN - Yeşil */
        [data-theme="black"] {
            --theme-primary: #000000;
            --theme-dark: #000;
            --theme-gradient-start: #000;
            --theme-gradient-mid: #fff;
            --theme-gradient-end: #000;
        }
		
        
        /* BLUE - Mavi */
        [data-theme="blue"] {
            --theme-primary: #3b82f6;
            --theme-dark: #2563eb;
            --theme-gradient-start: #0f172a;
            --theme-gradient-mid: #1e3a8a;
            --theme-gradient-end: #3b82f6;
        }
        
        /* PURPLE - Mor */
        [data-theme="purple"] {
            --theme-primary: #a855f7;
            --theme-dark: #9333ea;
            --theme-gradient-start: #1e1b4b;
            --theme-gradient-mid: #5b21b6;
            --theme-gradient-end: #a855f7;
        }
        
        /* RED - Kırmızı */
        [data-theme="red"] {
            --theme-primary: #ef4444;
            --theme-dark: #dc2626;
            --theme-gradient-start: #1e1b4b;
            --theme-gradient-mid: #7f1d1d;
            --theme-gradient-end: #ef4444;
        }
        
        /* ORANGE - Turuncu */
        [data-theme="orange"] {
            --theme-primary: #f97316;
            --theme-dark: #ea580c;
            --theme-gradient-start: #1c1917;
            --theme-gradient-mid: #7c2d12;
            --theme-gradient-end: #f97316;
        }
        
        /* PINK - Pembe */
        [data-theme="pink"] {
            --theme-primary: #ec4899;
            --theme-dark: #db2777;
            --theme-gradient-start: #1e1b4b;
            --theme-gradient-mid: #831843;
            --theme-gradient-end: #ec4899;
        }
        
        /* CYAN - Cam Göbeği */
        [data-theme="cyan"] {
            --theme-primary: #06b6d4;
            --theme-dark: #0891b2;
            --theme-gradient-start: #0c4a6e;
            --theme-gradient-mid: #0e7490;
            --theme-gradient-end: #06b6d4;
        }
        
        /* TEAL - Deniz Yeşili */
        [data-theme="teal"] {
            --theme-primary: #14b8a6;
            --theme-dark: #0d9488;
            --theme-gradient-start: #042f2e;
            --theme-gradient-mid: #134e4a;
            --theme-gradient-end: #14b8a6;
        }
        
        /* INDIGO - Çivit Mavisi */
        [data-theme="indigo"] {
            --theme-primary: #6366f1;
            --theme-dark: #4f46e5;
            --theme-gradient-start: #1e1b4b;
            --theme-gradient-mid: #3730a3;
            --theme-gradient-end: #6366f1;
        }
        
        /* YELLOW - Sarı */
        [data-theme="yellow"] {
            --theme-primary: #eab308;
            --theme-dark: #ca8a04;
            --theme-gradient-start: #1c1917;
            --theme-gradient-mid: #713f12;
            --theme-gradient-end: #eab308;
        }
        
        /* EMERALD - Zümrüt */
        [data-theme="emerald"] {
            --theme-primary: #10b981;
            --theme-dark: #059669;
            --theme-gradient-start: #022c22;
            --theme-gradient-mid: #065f46;
            --theme-gradient-end: #10b981;
        }
        
        /* ROSE - Gül */
        [data-theme="rose"] {
            --theme-primary: #f43f5e;
            --theme-dark: #e11d48;
            --theme-gradient-start: #1f1b2e;
            --theme-gradient-mid: #881337;
            --theme-gradient-end: #f43f5e;
        }
        
        /* Header'a tema renklerini uygula */
        .elite-header-top {
            background: linear-gradient(135deg, var(--theme-gradient-start) 0%, var(--theme-gradient-mid) 50%, var(--theme-gradient-end) 100%) !important;
            transition: background 0.5s ease;
        }
        
        .elite-header-top::before {
            background: radial-gradient(circle, var(--theme-primary) 0%, transparent 60%) !important;
        }
        
        .elite-header-top::after {
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--theme-primary) 10%,
                var(--theme-primary) 25%, 
                rgba(255, 255, 255, 0.8) 50%, 
                var(--theme-primary) 75%,
                var(--theme-primary) 90%, 
                transparent 100%) !important;
            box-shadow: 0 0 30px var(--theme-primary), 0 0 60px var(--theme-primary) !important;
        }
        
        .elite-top-contact i {
            color: #ffffff;
            filter: drop-shadow(0 0 8px var(--theme-gradient-end)) !important;
        }
        
        @keyframes elite-icon-glow {
            0%, 100% { 
                transform: scale(1);
                filter: drop-shadow(0 0 8px var(--theme-gradient-end));
            }
            50% { 
                transform: scale(1.1);
                filter: drop-shadow(0 0 12px var(--theme-gradient-end));
            }
        }
        
        .elite-top-contact a::after {
            background: linear-gradient(90deg, var(--theme-gradient-end), var(--theme-primary)) !important;
            box-shadow: 0 0 10px var(--theme-gradient-end) !important;
        }
        
        .elite-top-contact a:hover {
            color: var(--theme-gradient-end) !important;
            text-shadow: 0 0 10px var(--theme-primary) !important;
        }
        
        .elite-top-menu a {
            border: 1px solid var(--theme-primary) !important;
        }
        
        .elite-top-menu a::before {
            background: linear-gradient(135deg, var(--theme-primary), var(--theme-dark)) !important;
        }
        
        .elite-top-menu a i {
            color: #ffffff;
            filter: drop-shadow(0 0 6px var(--theme-gradient-end)) !important;
        }
        
        .elite-top-menu a:hover {
            box-shadow: 0 4px 16px var(--theme-primary) !important;
            border-color: var(--theme-gradient-end) !important;
        }
        
        /* Main Header Scroll Renkleri */
        .elite-header-main.elite-scrolled {
            background: color-mix(in srgb, var(--theme-primary) 35%, transparent) !important;

			max-height: 126px;
        }
        
        .elite-menu-link {
            border: 2px solid var(--theme-primary) !important;
        }
        
        .elite-menu-link:hover,
        .elite-menu-item.elite-active .elite-menu-link {
            background: var(--theme-primary) !important;
            border-color: var(--theme-gradient-end) !important;
            box-shadow: 0 4px 20px var(--theme-primary) !important;
        }
        
        .elite-menu-link::after {
            background: linear-gradient(90deg, var(--theme-primary), var(--theme-gradient-end)) !important;
            box-shadow: 0 0 10px var(--theme-primary) !important;
        }
        
        /* Dropdown Menu Renkleri */
        .elite-dropdown-menu {
            background: var(--theme-gradient-start) !important;
            border: 1px solid var(--theme-primary) !important;
        }
        
        .elite-dropdown-menu a i {
            color: var(--theme-gradient-end) !important;
            filter: drop-shadow(0 0 6px var(--theme-gradient-end)) !important;
        }
        
        .elite-dropdown-menu a:hover {
            background: var(--theme-primary) !important;
            border-color: var(--theme-primary) !important;
            box-shadow: 0 4px 16px var(--theme-primary) !important;
        }
        
        .elite-dropdown-menu a:hover i {
            filter: drop-shadow(0 0 10px var(--theme-gradient-end)) !important;
        }
        
        /* Mega Menu Renkleri */
        .elite-mega-menu {
            background: var(--theme-gradient-start) !important;
            border: 1px solid var(--theme-primary) !important;
        }
        
        .elite-mega-column h4 {
            color: var(--theme-gradient-end) !important;
            border-bottom: 2px solid var(--theme-primary) !important;
            text-shadow: 0 0 10px var(--theme-primary) !important;
        }
        
        .elite-mega-column ul li a i {
            color: var(--theme-gradient-end) !important;
        }
        
        .elite-mega-column ul li a:hover {
            background: var(--theme-primary) !important;
            box-shadow: 0 4px 16px var(--theme-primary) !important;
        }
        
        /* Action Buttons */
        .elite-action-btn {
            border: 2px solid var(--theme-primary) !important;
            background: var(--theme-primary) !important;
        }
        
        .elite-action-btn i {
            color: #fff !important;
            filter: drop-shadow(0 0 6px var(--theme-gradient-end)) !important;
        }
        
        .elite-action-btn:hover {
            border-color: var(--theme-gradient-end) !important;
            box-shadow: 0 8px 24px var(--theme-primary) !important;
        }
        
        .elite-action-btn:hover i {
            filter: drop-shadow(0 0 10px var(--theme-gradient-end)) !important;
        }
        
        .elite-cta-btn {
            background: linear-gradient(135deg, var(--theme-primary), var(--theme-dark)) !important;
            box-shadow: 0 8px 24px var(--theme-primary) !important;
        }
        
        .elite-cta-btn:hover {
            box-shadow: 0 16px 40px var(--theme-primary) !important;
        }
        
        /* Mobile Toggle */
        .elite-mobile-toggle {
            background: var(--theme-primary) !important;
            border: 2px solid var(--theme-primary) !important;
        }
        
        .elite-mobile-toggle span {
            background: #fff !important;
            box-shadow: 0 0 8px var(--theme-primary) !important;
        }
        
        .elite-mobile-toggle:hover {
            background: var(--theme-primary) !important;
            border-color: var(--theme-gradient-end) !important;
        }
        
        /* Logo Hover */
        .elite-logo:hover img {
            filter: drop-shadow(0 4px 16px var(--theme-primary)) !important;
        }
        
        /* Scroll Progress Bar */
        .elite-scroll-progress {
            background: linear-gradient(90deg, var(--theme-primary), var(--theme-dark)) !important;
            box-shadow: 0 0 10px var(--theme-primary) !important;
        }
        
        /* Theme Toggle Button */
        .elite-theme-toggle {
            background: linear-gradient(135deg, var(--theme-primary), var(--theme-dark)) !important;
        }
        
        .elite-theme-panel {
            border: 2px solid var(--theme-primary) !important;
        }
        
        .elite-theme-switcher {
            position: fixed;
            left: 30px;
            bottom: 30px;
            z-index: 99999;
        }
        
        .elite-theme-toggle {
            width: 60px;
            height: 60px;
            border-radius: 20px;
            background: linear-gradient(135deg, #30b066, #22a956);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
            transition: all 0.4s ease;
        }
        
        .elite-theme-toggle:hover {
            transform: translateY(-8px) scale(1.05);
        }
        
        .elite-theme-toggle i {
            color: #fff;
            font-size: 24px;
        }
        
        .elite-theme-panel {
            position: absolute;
            bottom: 75px;
            left: 0;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.4s ease;
            box-shadow: 0 16px 48px rgba(0,0,0,0.4);
            border: 2px solid #30b066;
        }
        
        .elite-theme-panel.elite-show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .elite-theme-title {
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 16px;
            text-align: center;
        }
        
        .elite-theme-colors {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        
        .elite-theme-color {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }
        
        .elite-theme-color:hover {
            transform: scale(1.1);
        }
        
        .elite-theme-color.active {
            border-color: #fff;
            box-shadow: 0 0 20px currentColor;
        }

        /* ==================== YENİ ÖZELLİKLER - NOTIFICATIONS ==================== */
        .elite-notifications {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 999998;
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 400px;
        }
        
        .elite-notification {
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            border-left: 4px solid #30b066;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: slideInRight 0.4s ease;
            cursor: pointer;
        }
        
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(100px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .elite-notification:hover {
            transform: translateX(-5px);
        }
        
        .elite-notification-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: #fff;
        }
        
        .elite-notification-content {
            flex: 1;
        }
        
        .elite-notification-title {
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        
        .elite-notification-message {
            color: #cbd5e1;
            font-size: 13px;
        }
        
        .elite-notification-close {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .elite-notification-close:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .elite-notification-close i {
            color: #fff;
            font-size: 12px;
        }

        /* ==================== YENİ ÖZELLİKLER - WHATSAPP MODAL ==================== */
        .elite-whatsapp-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            z-index: 99997;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            padding: 20px;
        }
        
        .elite-whatsapp-modal.elite-show {
            opacity: 1;
            visibility: visible;
        }
        
        .elite-whatsapp-container {
            background: #fff;
            border-radius: 24px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 25px 80px rgba(0,0,0,0.3);
            transform: scale(0.9);
            transition: transform 0.4s ease;
            overflow: hidden;
        }
        
        .elite-whatsapp-modal.elite-show .elite-whatsapp-container {
            transform: scale(1);
        }
        
        .elite-whatsapp-header {
            background: linear-gradient(135deg, #25D366, #128C7E);
            padding: 24px;
            position: relative;
        }
        
        .elite-whatsapp-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .elite-whatsapp-close:hover {
            background: rgba(255,255,255,0.3);
        }
        
        .elite-whatsapp-close i {
            color: #fff;
            font-size: 16px;
        }
        
        .elite-whatsapp-logo {
            width: 80px;
            height: 80px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }
        
        .elite-whatsapp-logo i {
            color: #25D366;
            font-size: 40px;
        }
        
        .elite-whatsapp-title {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 8px;
        }
        
        .elite-whatsapp-subtitle {
            color: rgba(255,255,255,0.9);
            font-size: 14px;
            text-align: center;
        }
        
        .elite-whatsapp-body {
            padding: 32px 24px;
        }
        
        .elite-whatsapp-messages {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }
        
        .elite-whatsapp-message-btn {
            background: #fff;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 16px;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .elite-whatsapp-message-btn:hover {
            border-color: #25D366;
            background: #f0fdf4;
            transform: translateX(5px);
        }
        
        .elite-whatsapp-message-btn i {
            color: #25D366;
            font-size: 18px;
        }
        
        .elite-whatsapp-message-btn span {
            color: #334155;
            font-size: 14px;
            font-weight: 600;
        }
        
        .elite-whatsapp-textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 14px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            resize: none;
            min-height: 100px;
            outline: none;
        }
        
        .elite-whatsapp-textarea:focus {
            border-color: #25D366;
        }
        
        .elite-whatsapp-send {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .elite-whatsapp-send:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
        }
		/* Header Son*/
		
		/* Footer Baslangic */
		
		 .aritma-footer {
            background: linear-gradient(135deg, #0a1628 0%, #0f1f35 50%, #0a1628 100%);
            position: relative;
            overflow: hidden;
            padding: 0;
            margin-top: 80px;
        }

        /* ===== EĞİMLİ/DALGALI RENK AYRACI ===== */
        .aritma-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: var(--theme-primary);
            z-index: 2;
            clip-path: polygon(
                0% 0%, 
                5% 100%, 
                10% 0%, 
                15% 100%, 
                20% 0%, 
                25% 100%, 
                30% 0%, 
                35% 100%, 
                40% 0%, 
                45% 100%, 
                50% 0%, 
                55% 100%, 
                60% 0%, 
                65% 100%, 
                70% 0%, 
                75% 100%, 
                80% 0%, 
                85% 100%, 
                90% 0%, 
                95% 100%, 
                100% 0%, 
                100% 100%, 
                0% 100%
            );
            animation: waveMove 8s linear infinite;
        }

        @keyframes waveMove {
            0% {
                clip-path: polygon(
                    0% 0%, 
                    5% 100%, 
                    10% 0%, 
                    15% 100%, 
                    20% 0%, 
                    25% 100%, 
                    30% 0%, 
                    35% 100%, 
                    40% 0%, 
                    45% 100%, 
                    50% 0%, 
                    55% 100%, 
                    60% 0%, 
                    65% 100%, 
                    70% 0%, 
                    75% 100%, 
                    80% 0%, 
                    85% 100%, 
                    90% 0%, 
                    95% 100%, 
                    100% 0%, 
                    100% 100%, 
                    0% 100%
                );
            }
            50% {
                clip-path: polygon(
                    0% 100%, 
                    5% 0%, 
                    10% 100%, 
                    15% 0%, 
                    20% 100%, 
                    25% 0%, 
                    30% 100%, 
                    35% 0%, 
                    40% 100%, 
                    45% 0%, 
                    50% 100%, 
                    55% 0%, 
                    60% 100%, 
                    65% 0%, 
                    70% 100%, 
                    75% 0%, 
                    80% 100%, 
                    85% 0%, 
                    90% 100%, 
                    95% 0%, 
                    100% 100%, 
                    100% 0%, 
                    0% 0%
                );
            }
            100% {
                clip-path: polygon(
                    0% 0%, 
                    5% 100%, 
                    10% 0%, 
                    15% 100%, 
                    20% 0%, 
                    25% 100%, 
                    30% 0%, 
                    35% 100%, 
                    40% 0%, 
                    45% 100%, 
                    50% 0%, 
                    55% 100%, 
                    60% 0%, 
                    65% 100%, 
                    70% 0%, 
                    75% 100%, 
                    80% 0%, 
                    85% 100%, 
                    90% 0%, 
                    95% 100%, 
                    100% 0%, 
                    100% 100%, 
                    0% 100%
                );
            }
        }

        .aritma-footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(var(--theme-rgb), 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(var(--theme-rgb), 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .aritma-footer-content {
            position: relative;
            z-index: 1;
            padding-top: 60px;
        }

        /* ===== MAIN FOOTER SECTION ===== */
        .aritma-footer-main {
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(var(--theme-rgb), 0.2);
        }

        .aritma-footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .aritma-footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
            gap: 60px;
        }

        /* ===== ABOUT SECTION ===== */
        .aritma-footer-about h4 {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .aritma-footer-about p {
            color: rgba(255,255,255,0.75);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* ===== BRAND SECTION (LOGO & COMPANY NAME - AKAR RENKLİ ARKA PLAN) ===== */
        .aritma-footer-brand {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 30px;
            padding: 22px 24px;
            border-radius: 14px;
            border-left: 5px solid var(--theme-primary);
            border-right: 5px solid var(--theme-primary);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: visible;
            /* AKAR RENKLİ ARKA PLAN */
            background: linear-gradient(90deg, 
                var(--theme-primary), 
                rgba(var(--theme-rgb), 0.8), 
                var(--theme-primary), 
                rgba(var(--theme-rgb), 0.6), 
                var(--theme-primary)
            );
            background-size: 300% 100%;
            animation: flowingColors 6s linear infinite;
            position: relative;
        }

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

        /* ARKA PLAN ÜZERİNDEKİ YARIŞEFFAF KATMAN */
        .aritma-footer-brand::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: color-mix(in srgb, var(--theme-primary) 80%, transparent);
            border-radius: 14px;
            z-index: 1;
        }

        /* YILDIZLAR - ÜSTTE */
        .aritma-footer-brand::before {
            content: '✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦';
            position: absolute;
            top: -25px;
            left: 5%;
            right: 5%;
            font-size: 14px;
            color: color-mix(in srgb, var(--theme-primary) 80%, transparent);
            opacity: 0.9;
            letter-spacing: 10px;
            pointer-events: none;
            animation: starsFloat 3s ease-in-out infinite;
            text-align: center;
            width: 90%;
            z-index: 2;
        }

        .aritma-footer-brand:hover::before {
            opacity: 1;
            animation: starsFloat 2s ease-in-out infinite;
        }

        .aritma-footer-brand:hover {
            box-shadow: 0 8px 24px rgba(var(--theme-rgb), 0.4), 
                        0 0 30px rgba(var(--theme-rgb), 0.5);
            border-right-color: rgba(var(--theme-rgb), 0.6);
            animation: flowingColorsHover 3s linear infinite;
        }

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

        /* ICON CONTAINER - DÖNERKEN YANIYOR */
        .aritma-brand-icon {
            width: 70px;
            height: 70px;
            min-width: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(var(--theme-rgb), 0.2), rgba(var(--theme-rgb), 0.08));
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid rgba(var(--theme-rgb), 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        /* ARKA YANIYOR - SÜREKLI DÖNÜYOR VE YANIP SÖNÜYOR */
        .aritma-brand-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: conic-gradient(
                from 0deg,
                #fff,
                rgba(255,255,255,0.3),
                rgba(255,255,255,0.1),
                #fff
            );
            opacity: 0.3;
            animation: spinAndGlow 4s linear infinite;
        }

        .aritma-footer-brand:hover .aritma-brand-icon::before {
            opacity: 0.8;
            animation: spinAndGlow 2s linear infinite;
        }

        .aritma-brand-icon i {
            font-size: 38px;
            color: #fff;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 2;
            animation: iconGlowContinuous 2s ease-in-out infinite;
        }

        /* YILDIZLAR İCON ETRAFINDA - SÜREKLI DÖNSÜN */
        .aritma-brand-icon::after {
            content: '★ ★ ★ ★';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 10px;
            color: #fff;
            opacity: 0.7;
            letter-spacing: 4px;
            z-index: 1;
            pointer-events: none;
            animation: rotateStarsContinuous 3s linear infinite;
        }

        .aritma-footer-brand:hover .aritma-brand-icon::after {
            opacity: 0.9;
            animation: rotateStarsContinuous 1.5s linear infinite;
        }

        .aritma-footer-brand:hover .aritma-brand-icon {
            transform: scale(1.2);
            background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
            border-color: #fff;
            box-shadow: 0 0 30px rgba(255,255,255,0.6),
                        inset 0 0 20px rgba(255,255,255,0.3);
        }

        .aritma-footer-brand:hover .aritma-brand-icon i {
            animation: iconGlowContinuous 1s ease-in-out infinite;
        }

        /* TEXT CONTAINER */
        .aritma-brand-text {
            display: flex;
            flex-direction: column;
            gap: 4px;
            position: relative;
            z-index: 2;
        }

        .aritma-brand-main {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.5px;
            line-height: 1.2;
            margin: 0;
            text-transform: uppercase;
        }

        .aritma-brand-sub {
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin: 0;
        }

        .aritma-footer-brand:hover .aritma-brand-main {
            text-shadow: 0 0 15px rgba(255,255,255,0.8);
        }

        .aritma-footer-brand:hover .aritma-brand-sub {
            text-shadow: 0 0 10px rgba(255,255,255,0.6);
        }

        /* ===== ANIMASYONLAR ===== */
        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* YENİ ANIMASYON: Dönüşle ve Yanıp Sönsün */
        @keyframes spinAndGlow {
            0% {
                transform: rotate(0deg);
                opacity: 0.3;
            }
            25% {
                opacity: 0.6;
            }
            50% {
                transform: rotate(180deg);
                opacity: 0.3;
            }
            75% {
                opacity: 0.6;
            }
            100% {
                transform: rotate(360deg);
                opacity: 0.3;
            }
        }

        @keyframes rotateStarsContinuous {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        @keyframes iconGlowContinuous {
            0%, 100% {
                text-shadow: 0 0 10px #fff;
                filter: brightness(1);
            }
            50% {
                text-shadow: 0 0 20px #fff, 0 0 30px rgba(255,255,255,0.5);
                filter: brightness(1.2);
            }
        }

        @keyframes starsFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        /* ===== SOCIAL ICONS ===== */
        .aritma-social-icons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .aritma-social-icons li a {
            width: 42px;
            height: 42px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--theme-primary);
            color: #fff;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid var(--theme-primary);
        }

        .aritma-social-icons li a:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(var(--theme-rgb), 0.4);
            background: transparent;
            color: var(--theme-primary);
        }

        /* ===== MENU COLUMNS ===== */
        .aritma-footer-column h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 25px;
            letter-spacing: 0.5px;
        }

        .aritma-footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .aritma-footer-column li {
            margin-bottom: 0;
        }

        .aritma-footer-column a {
            color: rgba(255,255,255,0.75);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .aritma-footer-column a:hover {
            color: var(--theme-primary);
            padding-left: 5px;
        }

        /* ICON - + ŞEKLİ */
        .aritma-footer-column a::before {
            content: '+';
            font-size: 16px;
            color: var(--theme-primary);
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 16px;
            height: 16px;
        }

        .aritma-footer-column a:hover::before {
            transform: rotate(90deg) scale(1.2);
        }

        /* ===== NEWSLETTER SECTION ===== */
        .aritma-footer-newsletter {
            border-left: 3px solid var(--theme-primary);
            padding-left: 20px;
        }

        .aritma-footer-newsletter h4 {
            color: #fff;
        }

        .aritma-footer-newsletter p {
            color: rgba(255,255,255,0.75);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .aritma-newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .aritma-newsletter-form input {
            padding: 12px 16px;
            border: 2px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.08);
            color: #fff;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .aritma-newsletter-form input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .aritma-newsletter-form input:hover,
        .aritma-newsletter-form input:focus {
            border-color: var(--theme-primary);
            background: rgba(255,255,255,0.12);
            outline: none;
            box-shadow: 0 0 0 3px rgba(var(--theme-rgb), 0.1);
        }

        .aritma-newsletter-form button {
            padding: 12px 20px;
            background: var(--theme-primary);
            border: none;
            color: #fff;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: inherit;
        }

        .aritma-newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(var(--theme-rgb), 0.4);
        }

        .aritma-newsletter-form button i {
            transition: transform 0.3s ease;
        }

        .aritma-newsletter-form button:hover i {
            transform: rotate(20deg) translateX(2px);
        }

        /* ===== INFO SECTION - RENKLİ ÇERÇEVELİ KUTU TASARIMI ===== */
        .aritma-footer-info {
            background: rgba(0,0,0,0.2);
            padding: 60px 0;
            border-top: 1px solid rgba(var(--theme-rgb), 0.2);
            border-bottom: 1px solid rgba(var(--theme-rgb), 0.2);
        }

        .aritma-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .aritma-info-item {
            background: rgba(0,0,0,0.3);
            border-radius: 20px;
            border: 3px solid var(--theme-primary);
            padding: 35px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .aritma-info-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--theme-primary), rgba(var(--theme-rgb), 0.7), var(--theme-primary));
            border-radius: 20px 20px 0 0;
            transition: all 0.3s ease;
        }

        .aritma-info-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(var(--theme-rgb), 0.5);
            border-color: var(--theme-primary);
            background: linear-gradient(135deg, rgba(var(--theme-rgb), 0.2), rgba(var(--theme-rgb), 0.1));
        }

        .aritma-info-item:hover::before {
            height: 10px;
        }

        .aritma-info-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--theme-primary), rgba(var(--theme-rgb), 0.6));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            color: #fff;
            border: 4px solid rgba(255,255,255,0.2);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .aritma-info-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
            z-index: -1;
        }

        .aritma-info-item:hover .aritma-info-icon {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(var(--theme-rgb), 0.8);
        }

        .aritma-info-content h6 {
            color: #fff;
            font-size: 22px;
            font-weight: 800;
            margin: 0 0 20px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .aritma-info-content h6::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: var(--theme-primary);
            border-radius: 2px;
        }

        .aritma-info-content p {
            color: rgba(255,255,255,0.9);
            font-size: 16px;
            margin: 0 0 15px 0;
            line-height: 1.7;
        }

        .aritma-info-content p:last-child {
            margin-bottom: 0;
        }

        .aritma-info-content a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            display: inline-block;
        }

        .aritma-info-content a:hover {
            color: #fff;
            text-shadow: 0 0 10px rgba(255,255,255,0.5);
            transform: translateY(-2px);
        }

        .aritma-info-label {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            display: block;
        }

        /* ===== BOTTOM FOOTER ===== */
        .aritma-footer-bottom {
            background: rgba(0,0,0,0.3);
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid rgba(var(--theme-rgb), 0.2);
        }

        .aritma-footer-bottom-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .aritma-footer-bottom-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            background: linear-gradient(135deg, rgba(var(--theme-rgb), 0.15) 0%, rgba(var(--theme-rgb), 0.05) 100%);
            border: 1px solid rgba(var(--theme-rgb), 0.2);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .aritma-footer-bottom-item:hover {
            background: linear-gradient(135deg, rgba(var(--theme-rgb), 0.25) 0%, rgba(var(--theme-rgb), 0.15) 100%);
            border-color: var(--theme-primary);
            box-shadow: 0 4px 12px rgba(var(--theme-rgb), 0.2);
        }

        .aritma-footer-bottom-item i {
            font-size: 16px;
            color: var(--theme-primary);
            transition: all 0.3s ease;
        }

        .aritma-footer-bottom-item:hover i {
            transform: scale(1.2);
        }

        .aritma-footer-bottom-item p {
            color: rgba(255,255,255,0.7);
            font-size: 13px;
            margin: 0;
            transition: all 0.3s ease;
        }

        .aritma-footer-bottom-item:hover p {
            color: rgba(255,255,255,0.9);
        }

        .aritma-footer-bottom-copy {
            width: 100%;
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(var(--theme-rgb), 0.1);
            color: rgba(255,255,255,0.5);
            font-size: 12px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .aritma-footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .aritma-footer-container {
                padding: 0 35px;
            }

            .aritma-footer-newsletter {
                grid-column: 1 / -1;
                border-left: none;
                border-top: 3px solid var(--theme-primary);
                padding-left: 0;
                padding-top: 20px;
            }

            .aritma-info-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .aritma-footer-main {
                padding: 40px 0 30px;
            }

            .aritma-footer-container {
                padding: 0 30px;
            }

            .aritma-footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .aritma-footer-newsletter {
                border-left: 3px solid var(--theme-primary);
                border-top: none;
                padding-left: 20px;
                padding-top: 0;
            }

            .aritma-info-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 30px;
            }

            .aritma-info-item {
                padding: 30px 25px;
            }

            .aritma-info-icon {
                width: 80px;
                height: 80px;
                font-size: 36px;
            }

            .aritma-info-content h6 {
                font-size: 20px;
            }

            .aritma-footer-column ul {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .aritma-footer-container {
                padding: 0 20px;
            }

            .aritma-footer-grid {
                gap: 25px;
            }

            .aritma-social-icons li a {
                width: 38px;
                height: 38px;
                font-size: 14px;
            }

            .aritma-info-item {
                padding: 25px 20px;
            }

            .aritma-info-icon {
                width: 70px;
                height: 70px;
                font-size: 32px;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .aritma-footer-grid > * {
            animation: fadeInUp 0.6s ease-out;
        }

        .aritma-info-item {
            animation: fadeInUp 0.6s ease-out;
        }
		/* Footer Son */
		
		/*İletişim SAyfa Baslangıc */
		      :root {
            --primary: var(--theme-primary, #0a4d8c);
            --primary-light: var(--theme-primary, #1e88e5);
            --primary-dark: var(--theme-primary, #003366);
            --secondary: var(--theme-primary, #00acc1);
            --secondary-light: var(--theme-primary, #26c6da);
            --accent: #ff6f00;
            --accent-light: #ff9800;
            --gold: #ffd700;
            --text: #1a1a2e;
            --text-light: #4a5568;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --gradient-1: linear-gradient(135deg, var(--theme-gradient-start) 0%, var(--theme-gradient-mid) 50%, var(--theme-gradient-end) 100%) !important;
			
			
			
			
			
			
            --gradient-2: linear-gradient(135deg, var(--theme-gradient-start) 0%, var(--theme-gradient-mid) 50%, var(--theme-gradient-end) 100%) !important;
            --gradient-3: linear-gradient(135deg, var(--theme-gradient-start) 0%, var(--theme-gradient-mid) 50%, var(--theme-gradient-end) 100%) !important;
            --gradient-premium: linear-gradient(135deg, var(--theme-gradient-start) 0%, var(--theme-gradient-mid) 50%, var(--theme-gradient-end) 100%) !important;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background: var(--bg-light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        /* Info Section */
        .contact-info-section {
            padding: 80px 0 60px;
            background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-info-section::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 172, 193, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .info-item {
            background: var(--bg-white);
            border-radius: 25px;
            padding: 40px 35px;
            text-align: center;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .info-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: 0;
        }

        .info-item:hover {
            transform: translateY(-20px) scale(1.05);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
            border-color: var(--secondary);
        }

        .info-item:hover::before {
            opacity: 0.05;
        }

        .info-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            position: relative;
            z-index: 1;
            box-shadow: 0 15px 40px rgba(10, 77, 140, 0.3);
            transition: all 0.5s ease;
        }

        .info-item:nth-child(2) .info-icon {
            background: var(--gradient-2);
            box-shadow: 0 15px 40px rgba(0, 172, 193, 0.3);
        }

        .info-item:nth-child(3) .info-icon {
            background: var(--gradient-3);
            box-shadow: 0 15px 40px rgba(255, 111, 0, 0.3);
        }

        .info-item:hover .info-icon {
            transform: scale(1.15) rotateY(360deg);
        }

        .info-content {
            position: relative;
            z-index: 1;
        }

        .info-content h5 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }

        .info-content p {
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        .info-content a {
            color: var(--primary-light);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .info-content a:hover {
            color: var(--secondary);
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 0;
            background: var(--gradient-premium);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact-form-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
            animation: pulseGlow 12s infinite;
        }

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

        .form-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .form-header h2 {
            font-size: 3.2rem;
            color: white;
            margin-bottom: 20px;
            text-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .form-header p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-form {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 25px;
        }

        .form-group {
            position: relative;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 1.05rem;
            transition: all 0.4s ease;
            resize: none;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
        }

        .form-group textarea {
            grid-column: 1 / -1;
            min-height: 150px;
            padding: 20px;
        }

        .form-submit {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }

        .submit-btn {
            position: relative;
            padding: 16px 50px;
            background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
            color: #000;
            border: none;
            border-radius: 60px;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
            font-family: 'Montserrat', sans-serif;
        }

        .submit-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            transition: left 0.6s ease;
            z-index: 1;
        }

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

        .submit-btn:hover {
            transform: translateY(-5px) scale(1.08);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
        }

        .submit-btn:active {
            transform: translateY(-2px);
        }

        .submit-btn i {
            margin-left: 10px;
            position: relative;
            z-index: 2;
        }

        /* Map Section */
        .map-section {
            padding: 0;
            background: var(--bg-white);
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            display: block;
            border: none;
            transition: all 0.6s ease;
        }

        .map-section:hover iframe {
            filter: brightness(1.05);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .contact-info-section::before {
                width: 400px;
                height: 400px;
            }
        }

        @media (max-width: 992px) {
            .contact-info-section {
                padding: 60px 0;
            }

            .form-header h2 {
                font-size: 2.5rem;
            }

            .info-item {
                padding: 35px 30px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .contact-info-section {
                padding: 50px 0;
            }

            .contact-info-grid {
                gap: 30px;
            }

            .contact-form-section {
                padding: 60px 0;
            }

            .form-header h2 {
                font-size: 2rem;
            }

            .form-header p {
                font-size: 1.1rem;
            }

            .form-row {
                gap: 20px;
                margin-bottom: 20px;
            }

            .form-group input,
            .form-group textarea {
                padding: 14px 16px;
                font-size: 1rem;
            }

            .submit-btn {
                padding: 14px 40px;
                font-size: 1rem;
            }

            .map-section {
                height: 350px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .contact-info-section {
                padding: 40px 0;
            }

            .contact-form-section {
                padding: 40px 0;
            }

            .form-header h2 {
                font-size: 1.6rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .info-item {
                padding: 30px 20px;
            }

            .map-section {
                height: 280px;
            }
        }
		/* İletişim sayfa son */
		
		/* ürünler baslangic */
		  :root {
        --urunkat-primary: var(--theme-primary, #30b066);
    }

    .urunkat-ultra-products-section {
        padding: 140px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .urunkat-products-decoration {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
        z-index: 0;
    }

    .urunkat-deco-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.12;
        animation: urunkat-blobFloat 25s ease-in-out infinite;
    }

    .urunkat-blob-1 {
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, var(--theme-primary, #30b066), transparent);
        top: -300px;
        left: -200px;
    }

    .urunkat-blob-2 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--theme-primary, #30b066), transparent);
        top: 40%;
        right: -200px;
        animation-delay: 8s;
    }

    .urunkat-blob-3 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--theme-primary, #30b066), transparent);
        bottom: -150px;
        left: 30%;
        animation-delay: 16s;
    }

    @keyframes urunkat-blobFloat {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(60px, -60px) scale(1.15); }
        50% { transform: translate(-40px, 40px) scale(0.85); }
        75% { transform: translate(40px, 60px) scale(1.1); }
    }

    .urunkat-floating-particles {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .urunkat-particle {
        position: absolute;
        width: 8px;
        height: 8px;
        background: var(--theme-primary, #30b066);
        border-radius: 50%;
        opacity: 0.3;
        animation: urunkat-particleFloat 20s ease-in-out infinite;
    }

    .urunkat-particle-1 { top: 10%; left: 15%; }
    .urunkat-particle-2 { top: 30%; right: 20%; animation-delay: 4s; }
    .urunkat-particle-3 { bottom: 20%; left: 25%; animation-delay: 8s; }
    .urunkat-particle-4 { top: 60%; right: 15%; animation-delay: 12s; }
    .urunkat-particle-5 { bottom: 30%; left: 40%; animation-delay: 16s; }

    @keyframes urunkat-particleFloat {
        0%, 100% { transform: translate(0, 0); opacity: 0.3; }
        25% { transform: translate(30px, -30px); opacity: 0.6; }
        50% { transform: translate(-20px, 20px); opacity: 0.4; }
        75% { transform: translate(20px, 30px); opacity: 0.5; }
    }

    .urunkat-ultra-products-section > .container {
        position: relative;
        z-index: 1;
    }

    .urunkat-products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 35px;
        margin-bottom: 60px;
    }

    .urunkat-product-item {
        animation: urunkat-fadeInUp 0.6s ease-out forwards;
        opacity: 0;
    }

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

    .urunkat-ultra-product-card {
        background: white;
        border-radius: 28px;
        overflow: hidden;
        border: 2px solid #e8e8e8;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
    }

    .urunkat-ultra-product-card:hover {
        border-color: var(--theme-primary, #30b066);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        transform: translateY(-12px) scale(1.02);
    }

    .urunkat-card-border {
        position: absolute;
        inset: -2px;
        border-radius: 28px;
        background: linear-gradient(135deg, var(--theme-primary, #30b066), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
        pointer-events: none;
    }

    .urunkat-ultra-product-card:hover .urunkat-card-border {
        opacity: 1;
    }

    .urunkat-product-image-wrapper {
        position: relative;
        width: 100%;
        height: 320px;
        overflow: hidden;
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    }

    .urunkat-image-glow {
        position: absolute;
        inset: -30px;
        background: radial-gradient(circle at center, var(--theme-primary, #30b066), transparent 70%);
        opacity: 0;
        filter: blur(40px);
        z-index: 0;
        transition: opacity 0.4s ease;
    }

    .urunkat-ultra-product-card:hover .urunkat-image-glow {
        opacity: 0.4;
    }

    .urunkat-product-image-link {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
    }

    .urunkat-product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .urunkat-ultra-product-card:hover .urunkat-product-image {
        transform: scale(1.15) rotate(2deg);
    }

    .urunkat-image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--theme-primary, #30b066) 0%, rgba(0, 0, 0, 0.5) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }

    .urunkat-ultra-product-card:hover .urunkat-image-overlay {
        opacity: 0.2;
    }

    .urunkat-product-content {
        padding: 28px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 14px;
        position: relative;
        z-index: 2;
    }

    .urunkat-product-category {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        color: var(--theme-primary, #30b066);
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        width: fit-content;
        border: 1px solid #e8e8e8;
    }

    .urunkat-product-title {
        font-size: 19px;
        font-weight: 800;
        margin: 0;
        line-height: 1.3;
        min-height: 50px;
    }

    .urunkat-product-title a {
        color: #1a1a1a;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .urunkat-product-title a:hover {
        color: var(--theme-primary, #30b066);
    }

    .urunkat-ultra-product-card:hover .urunkat-product-title a {
        color: var(--theme-primary, #30b066);
    }

    .urunkat-quick-view {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
        z-index: 3;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .urunkat-ultra-product-card:hover .urunkat-quick-view {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    .urunkat-quick-view-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        color: var(--theme-primary, #30b066);
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
    }

    .urunkat-quick-view-btn:hover {
        background: var(--theme-primary, #30b066);
        color: white;
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(48, 176, 102, 0.4);
    }

    .urunkat-pagination-wrapper {
        text-align: center;
        margin-top: 60px;
    }

    .urunkat-pagination-info {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .urunkat-pagination {
        display: flex;
        gap: 8px;
        list-style: none;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    .urunkat-pagination a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 44px;
        padding: 0 12px;
        border: 2px solid #e2e8f0;
        color: #475569;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 14px;
    }

    .urunkat-pagination a:hover {
        border-color: var(--theme-primary, #30b066);
        color: var(--theme-primary, #30b066);
        background: rgba(48, 176, 102, 0.05);
        transform: translateY(-2px);
    }

    .urunkat-pagination a.active {
        background: var(--theme-primary, #30b066);
        color: white;
        border-color: var(--theme-primary, #30b066);
        box-shadow: 0 4px 12px rgba(48, 176, 102, 0.3);
    }

    /* Ürün Bulunamadı */
    .urunkat-no-products {
        text-align: center;
        padding: 80px 40px;
    }

    .urunkat-no-products-icon {
        font-size: 80px;
        color: var(--theme-primary, #30b066);
        margin-bottom: 30px;
        opacity: 0.8;
    }

    .urunkat-no-products-title {
        font-size: 32px;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 15px;
    }

    .urunkat-no-products-text {
        font-size: 16px;
        color: #666;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .urunkat-no-products-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        background: linear-gradient(110deg, var(--theme-primary, #30b066) 0%, var(--theme-primary, #30b066) 100%);
        color: white;
        text-decoration: none;
        border-radius: 14px;
        font-weight: 800;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 8px 24px rgba(48, 176, 102, 0.3);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .urunkat-no-products-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px var(--theme-primary, rgba(48, 176, 102, 0.5));
    }

    @media (max-width: 992px) {
        .urunkat-products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
    }

    @media (max-width: 768px) {
        .urunkat-deco-blob,
        .urunkat-floating-particles {
            display: none;
        }

        .urunkat-products-grid {
            display: flex;
            flex-wrap: nowrap;
            gap: 20px;
            margin-left: -15px;
            margin-right: -15px;
            padding: 5px 15px 15px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .urunkat-product-item {
            flex: 0 0 auto;
            width: 300px;
            min-width: 300px;
        }
    }

    @media (max-width: 576px) {
        .urunkat-ultra-products-section {
            padding: 50px 0;
        }

        .urunkat-product-item {
            width: 280px;
            min-width: 280px;
        }

        .urunkat-no-products {
            padding: 60px 20px;
        }

        .urunkat-no-products-title {
            font-size: 24px;
        }

        .urunkat-no-products-text {
            font-size: 14px;
        }
    }
	/*Ürünler Son */
	
	
	/* ==================== ÜRÜN DETAY SAYFASI - BENZERSIZ CSS ==================== */

/* Page Header - Animated Gradient */
.elite-product-detail-wrapper .pageheader.elite-product-header {
    background: linear-gradient(135deg, var(--theme-gradient-start, #0a1f34) 0%, var(--theme-gradient-mid, #1a4d3e) 50%, var(--theme-gradient-end, #34bd6b) 100%) !important;
    padding: 80px 20px !important;
    border-radius: 0 !important;
    box-shadow: 0 10px 40px rgba(var(--theme-rgb, 48, 176, 102), 0.3) !important;
    animation: eliteHeaderPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.elite-product-detail-wrapper .pageheader.elite-product-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--theme-rgb, 48, 176, 102), 0.3) 0%, transparent 70%);
    animation: eliteGlowRotate 15s linear infinite;
}

@keyframes eliteHeaderPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(var(--theme-rgb, 48, 176, 102), 0.3); }
    50% { box-shadow: 0 15px 60px rgba(var(--theme-rgb, 48, 176, 102), 0.5); }
}

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

.elite-product-detail-wrapper .pageheader__area h2 {
    position: relative;
    z-index: 1;
    color: white !important;
    font-size: 2.5em !important;
    margin-bottom: 15px !important;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: eliteSlideDown 0.8s ease-out;
}

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

.elite-product-detail-wrapper .breadcrumb {
    position: relative;
    z-index: 1;
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    animation: eliteFadeIn 1s ease-out 0.3s both;
}

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

.elite-product-detail-wrapper .breadcrumb-item a {
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none !important;
    padding: 8px 18px !important;
    background: rgba(255,255,255,0.15) !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
    font-weight: 600 !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
}

.elite-product-detail-wrapper .breadcrumb-item a:hover {
    background: rgba(255,255,255,0.25) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2) !important;
    border-color: rgba(255,255,255,0.4) !important;
}

.elite-product-detail-wrapper .breadcrumb .separator {
    color: rgba(255,255,255,0.5) !important;
}

/* ==================== PRODUCT DETAIL SECTION ==================== */
.elite-product-detail-wrapper .flat-product-detail.elite-detail-wrapper {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    animation: eliteSlideUp 0.8s ease-out;
}

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

.elite-product-detail-wrapper .elite-product-container {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

/* ==================== IMAGE GALLERY ==================== */
.elite-product-detail-wrapper .elite-product-images {
    position: relative;
}

.elite-product-detail-wrapper .flexslider.elite-gallery {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    margin: 0 !important;
}

.elite-product-detail-wrapper .flexslider.elite-gallery .slides img {
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
}

.elite-product-detail-wrapper .flexslider.elite-gallery .slides img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2) !important;
}

.elite-product-detail-wrapper .flexslider.elite-gallery .slides > li > div {
    position: absolute !important;
    top: 25px !important;
    right: 25px !important;
    z-index: 10 !important;
}

.elite-product-detail-wrapper .flexslider.elite-gallery .slides > li > div span {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    box-shadow: 0 8px 20px rgba(255,107,107,0.4) !important;
    animation: eliteBounce 2s infinite;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

@keyframes eliteBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ==================== PRODUCT INFO ==================== */
.elite-product-detail-wrapper .product-detail.elite-info-wrapper .header-detail .name {
    font-size: 2.2em !important;
    background: linear-gradient(135deg, var(--theme-primary, #30b066) 0%, var(--theme-gradient-end, #34bd6b) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

.elite-product-detail-wrapper .product-detail.elite-info-wrapper .category {
    color: #64748b !important;
    font-size: 0.95em !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
}

.elite-product-detail-wrapper .status-product.elite-stock-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 25px !important;
    display: inline-block !important;
    font-weight: 700 !important;
    font-size: 0.9em !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
}

.elite-product-detail-wrapper .product-detail.elite-info-wrapper .price {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 30px 0 !important;
    flex-wrap: wrap !important;
}

.elite-product-detail-wrapper .product-detail.elite-info-wrapper .price .regular {
    font-size: 3em !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, var(--theme-primary, #30b066) 0%, var(--theme-gradient-end, #34bd6b) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px !important;
}

.elite-product-detail-wrapper .product-detail.elite-info-wrapper .price .sale {
    font-size: 1.8em !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    font-weight: 600 !important;
}

.elite-product-detail-wrapper .product-detail.elite-info-wrapper .info-text {
    color: #475569 !important;
    line-height: 1.9 !important;
    padding: 24px !important;
    background: linear-gradient(135deg, rgba(var(--theme-rgb, 48, 176, 102), 0.08) 0%, rgba(var(--theme-rgb, 48, 176, 102), 0.03) 100%);
    border-radius: 16px !important;
    border-left: 5px solid var(--theme-primary, #30b066) !important;
    margin: 25px 0 !important;
    font-size: 15px !important;
    position: relative;
    overflow: hidden;
}

.elite-product-detail-wrapper .product-detail.elite-info-wrapper .info-text::before {
    content: '\f05a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 60px;
    color: rgba(var(--theme-rgb, 48, 176, 102), 0.05);
}

/* ==================== PRODUCT FEATURES ==================== */
.elite-product-detail-wrapper .product-features.elite-features-grid ul {
    list-style: none !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-top: 25px !important;
}

.elite-product-detail-wrapper .product-features.elite-features-grid li {
    padding: 16px 20px 16px 50px !important;
    background: linear-gradient(135deg, rgba(var(--theme-rgb, 48, 176, 102), 0.1) 0%, rgba(var(--theme-rgb, 48, 176, 102), 0.05) 100%);
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    position: relative;
    font-weight: 600 !important;
    color: #334155 !important;
    border: 2px solid transparent !important;
}

.elite-product-detail-wrapper .product-features.elite-features-grid li:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(var(--theme-rgb, 48, 176, 102), 0.2);
    border-color: var(--theme-primary, #30b066) !important;
    background: linear-gradient(135deg, rgba(var(--theme-rgb, 48, 176, 102), 0.15) 0%, rgba(var(--theme-rgb, 48, 176, 102), 0.08) 100%);
}

.elite-product-detail-wrapper .product-features.elite-features-grid li:before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-primary, #30b066);
    font-weight: 900;
    font-size: 18px;
    width: 26px;
    height: 26px;
    background: rgba(var(--theme-rgb, 48, 176, 102), 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== ACTION BUTTONS ==================== */
.elite-product-detail-wrapper .elite-action-buttons-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.elite-product-detail-wrapper .lab-btn.elite-btn-primary {
    flex: 1;
    padding: 18px 30px !important;
    background: linear-gradient(135deg, var(--theme-primary, #30b066) 0%, var(--theme-gradient-end, #34bd6b) 100%) !important;
    color: white !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(var(--theme-rgb, 48, 176, 102), 0.3) !important;
    position: relative;
    overflow: hidden;
}

.elite-product-detail-wrapper .lab-btn.elite-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.elite-product-detail-wrapper .lab-btn.elite-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.elite-product-detail-wrapper .lab-btn.elite-btn-primary:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px rgba(var(--theme-rgb, 48, 176, 102), 0.4) !important;
    color: white !important;
}

.elite-product-detail-wrapper .lab-btn.elite-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3) !important;
}

.elite-product-detail-wrapper .lab-btn.elite-btn-whatsapp:hover {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4) !important;
}

/* ==================== TABS SECTION ==================== */
.elite-product-detail-wrapper .flat-product-content.elite-tabs-section {
    margin-top: 60px;
    background: transparent;
}

.elite-product-detail-wrapper .elite-tab-navigation {
    display: flex !important;
    background: linear-gradient(135deg, var(--theme-gradient-start, #0a1f34) 0%, var(--theme-gradient-mid, #1a4d3e) 50%, var(--theme-gradient-end, #34bd6b) 100%) !important;
    border-radius: 20px 20px 0 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(var(--theme-rgb, 48, 176, 102), 0.2) !important;
}

.elite-product-detail-wrapper .elite-tab-navigation li {
    flex: 1 !important;
    padding: 24px 30px !important;
    text-align: center !important;
    color: rgba(255,255,255,0.7) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.elite-product-detail-wrapper .elite-tab-navigation li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: white;
    transition: width 0.3s ease;
    border-radius: 4px 4px 0 0;
}

.elite-product-detail-wrapper .elite-tab-navigation li.active {
    color: white !important;
    background: rgba(255,255,255,0.15) !important;
}

.elite-product-detail-wrapper .elite-tab-navigation li.active::after {
    width: 80%;
}

.elite-product-detail-wrapper .elite-tab-navigation li:hover:not(.active) {
    background: rgba(255,255,255,0.08) !important;
    color: rgba(255,255,255,0.9) !important;
}

.elite-product-detail-wrapper .elite-tab-content-wrapper {
    background: white;
    border-radius: 0 0 20px 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    border-top: none;
}

.elite-product-detail-wrapper .description-text.elite-tab-pane {
    display: none;
    line-height: 1.9;
    color: #475569;
    font-size: 15px;
}

.elite-product-detail-wrapper .description-text.elite-tab-pane.active {
    display: block !important;
    animation: eliteFadeIn 0.5s ease-out;
}

.elite-product-detail-wrapper .review__form.elite-tab-pane {
    display: none;
}

.elite-product-detail-wrapper .review__form.elite-tab-pane.active {
    display: block !important;
    animation: eliteFadeIn 0.5s ease-out;
}

.elite-product-detail-wrapper .review__form input,
.elite-product-detail-wrapper .review__form textarea,
.elite-product-detail-wrapper .review__form select {
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    transition: all 0.3s ease !important;
    font-size: 15px !important;
}

.elite-product-detail-wrapper .review__form input:focus,
.elite-product-detail-wrapper .review__form textarea:focus,
.elite-product-detail-wrapper .review__form select:focus {
    border-color: var(--theme-primary, #30b066) !important;
    box-shadow: 0 0 0 4px rgba(var(--theme-rgb, 48, 176, 102), 0.1) !important;
    outline: none !important;
}

.elite-product-detail-wrapper .review__form button[type="submit"] {
    background: linear-gradient(135deg, var(--theme-primary, #30b066) 0%, var(--theme-gradient-end, #34bd6b) 100%) !important;
    color: white !important;
    border: none !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 10px 30px rgba(var(--theme-rgb, 48, 176, 102), 0.3) !important;
}

.elite-product-detail-wrapper .review__form button[type="submit"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(var(--theme-rgb, 48, 176, 102), 0.4) !important;
}

/* ==================== RELATED PRODUCTS - MODERN CARD DESIGN ==================== */
.elite-product-detail-wrapper .related-shots-area.elite-related-section {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.elite-product-detail-wrapper .elite-related-section .section-title__title {
    background: linear-gradient(135deg, var(--theme-primary, #30b066) 0%, var(--theme-gradient-end, #34bd6b) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5em !important;
    font-weight: 800 !important;
    margin-bottom: 50px !important;
    position: relative;
    display: inline-block;
}

.elite-product-detail-wrapper .elite-related-section .section-title__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--theme-primary, #30b066), transparent);
    border-radius: 3px;
}

.elite-product-detail-wrapper .elite-product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.elite-product-detail-wrapper .elite-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--theme-primary, #30b066), var(--theme-gradient-end, #34bd6b));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.elite-product-detail-wrapper .elite-product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(var(--theme-rgb, 48, 176, 102), 0.25);
    border-color: rgba(var(--theme-rgb, 48, 176, 102), 0.2);
}

.elite-product-detail-wrapper .elite-product-card:hover::before {
    transform: scaleX(1);
}

.elite-product-detail-wrapper .elite-product-card-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    background: #f8f9fa;
}

.elite-product-detail-wrapper .elite-product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.elite-product-detail-wrapper .elite-product-card:hover .elite-product-card-image img {
    transform: scale(1.1);
}

.elite-product-detail-wrapper .elite-product-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(255,107,107,0.4);
    z-index: 2;
}

.elite-product-detail-wrapper .elite-product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--theme-rgb, 48, 176, 102), 0.9), rgba(var(--theme-rgb, 48, 176, 102), 0.7));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.elite-product-detail-wrapper .elite-product-card:hover .elite-product-card-overlay {
    opacity: 1;
}

.elite-product-detail-wrapper .elite-product-card-quick-view {
    background: white;
    color: var(--theme-primary, #30b066);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.elite-product-detail-wrapper .elite-product-card:hover .elite-product-card-quick-view {
    transform: translateY(0);
    opacity: 1;
}

.elite-product-detail-wrapper .elite-product-card-quick-view:hover {
    background: var(--theme-primary, #30b066);
    color: white;
    transform: scale(1.05);
}

.elite-product-detail-wrapper .elite-product-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.elite-product-detail-wrapper .elite-product-card-code {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.elite-product-detail-wrapper .elite-product-card-title {
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
    min-height: 50px;
}

.elite-product-detail-wrapper .elite-product-card-title a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.elite-product-detail-wrapper .elite-product-card-title a:hover {
    color: var(--theme-primary, #30b066);
}

.elite-product-detail-wrapper .elite-product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
}

.elite-product-detail-wrapper .elite-product-card-price {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--theme-primary, #30b066) 0%, var(--theme-gradient-end, #34bd6b) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.elite-product-detail-wrapper .elite-product-card-action {
    background: linear-gradient(135deg, var(--theme-primary, #30b066) 0%, var(--theme-gradient-end, #34bd6b) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(var(--theme-rgb, 48, 176, 102), 0.3);
}

.elite-product-detail-wrapper .elite-product-card-action:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(var(--theme-rgb, 48, 176, 102), 0.4);
    color: white;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .elite-product-detail-wrapper .pageheader.elite-product-header {
        padding: 50px 20px !important;
    }
    
    .elite-product-detail-wrapper .pageheader__area h2 {
        font-size: 1.8em !important;
    }
    
    .elite-product-detail-wrapper .elite-product-container {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .elite-product-detail-wrapper .product-features.elite-features-grid ul {
        grid-template-columns: 1fr !important;
    }
    
    .elite-product-detail-wrapper .elite-action-buttons-wrapper {
        flex-direction: column;
    }
    
    .elite-product-detail-wrapper .elite-tab-navigation {
        border-radius: 16px 16px 0 0 !important;
    }
    
    .elite-product-detail-wrapper .elite-tab-navigation li {
        padding: 18px 20px !important;
        font-size: 14px !important;
    }
    
    .elite-product-detail-wrapper .elite-tab-content-wrapper {
        padding: 30px 20px;
        border-radius: 0 0 16px 16px;
    }
    
    .elite-product-detail-wrapper .product-detail.elite-info-wrapper .price .regular {
        font-size: 2.2em !important;
    }
}

/* ürün detay son */


/* ==================== HİZMET DETAY SAYFASI - BENZERSIZ CSS ==================== */

/* Page Header - Animated Gradient */
.elite-service-detail-wrapper .pageheader {
    background: linear-gradient(135deg, var(--theme-gradient-start, #0a1f34) 0%, var(--theme-gradient-mid, #1a4d3e) 50%, var(--theme-gradient-end, #34bd6b) 100%) !important;
    padding: 80px 20px !important;
    border-radius: 0 !important;
    box-shadow: 0 10px 40px rgba(var(--theme-rgb, 48, 176, 102), 0.3) !important;
    animation: eliteHeaderPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.elite-service-detail-wrapper .pageheader::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--theme-rgb, 48, 176, 102), 0.3) 0%, transparent 70%);
    animation: eliteGlowRotate 15s linear infinite;
}

@keyframes eliteHeaderPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(var(--theme-rgb, 48, 176, 102), 0.3); }
    50% { box-shadow: 0 15px 60px rgba(var(--theme-rgb, 48, 176, 102), 0.5); }
}

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

.elite-service-detail-wrapper .pageheader__area h2 {
    position: relative;
    z-index: 1;
    color: white !important;
    font-size: 2.5em !important;
    margin-bottom: 15px !important;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: eliteSlideDown 0.8s ease-out;
}

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

.elite-service-detail-wrapper .breadcrumb {
    position: relative;
    z-index: 1;
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    animation: eliteFadeIn 1s ease-out 0.3s both;
}

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

.elite-service-detail-wrapper .breadcrumb-item a {
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none !important;
    padding: 8px 18px !important;
    background: rgba(255,255,255,0.15) !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
    font-weight: 600 !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
}

.elite-service-detail-wrapper .breadcrumb-item a:hover {
    background: rgba(255,255,255,0.25) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2) !important;
    border-color: rgba(255,255,255,0.4) !important;
}

.elite-service-detail-wrapper .breadcrumb .separator {
    color: rgba(255,255,255,0.5) !important;
}

/* ==================== SERVICE DETAIL SECTION ==================== */
.elite-service-detail-wrapper .service.service--details {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    animation: eliteSlideUp 0.8s ease-out;
}

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

.elite-service-detail-wrapper .service__maincontent {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.elite-service-detail-wrapper .service__maincontent img {
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
    margin-bottom: 30px;
    transition: all 0.3s ease !important;
    width: 100%;
    height: auto;
}

.elite-service-detail-wrapper .service__maincontent img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2) !important;
}

.elite-service-detail-wrapper .service__maincontent p {
    color: #ffffff ;
    line-height: 1.9 !important;
    font-size: 16px !important;
    margin-bottom: 20px;
}

/* ==================== SIDEBAR ==================== */
.elite-service-detail-wrapper .sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 1;
}

.elite-service-detail-wrapper .widget.sidebar-content {
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.elite-service-detail-wrapper .widget.sidebar-content:hover {
    box-shadow: 0 25px 70px rgba(var(--theme-rgb, 48, 176, 102), 0.15);
}

.elite-service-detail-wrapper .widget__head {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.elite-service-detail-wrapper .widget__head h5 {
    color: #1e293b;
    font-size: 1.4em;
    font-weight: 800;
    margin: 0;
    position: relative;
    display: inline-block;
}

.elite-service-detail-wrapper .widget__head h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-primary, #30b066), var(--theme-gradient-end, #34bd6b));
    border-radius: 3px;
}

.elite-service-detail-wrapper .affilli-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.elite-service-detail-wrapper .affilli-menu li {
    margin-bottom: 12px !important;
}

.elite-service-detail-wrapper .affilli-menu li a {
    display: flex !important;
    align-items: center !important;
    padding: 14px 20px !important;
    background: linear-gradient(135deg, rgba(var(--theme-rgb, 48, 176, 102), 0.08) 0%, rgba(var(--theme-rgb, 48, 176, 102), 0.03) 100%) !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    color: #334155 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
    position: relative;
    overflow: hidden;
}

.elite-service-detail-wrapper .affilli-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--theme-primary, #30b066), var(--theme-gradient-end, #34bd6b));
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 3px 0 0 3px;
}

.elite-service-detail-wrapper .affilli-menu li a:hover {
    background: linear-gradient(135deg, rgba(var(--theme-rgb, 48, 176, 102), 0.15) 0%, rgba(var(--theme-rgb, 48, 176, 102), 0.08) 100%) !important;
    color: var(--theme-primary, #30b066) !important;
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(var(--theme-rgb, 48, 176, 102), 0.2);
    border-color: var(--theme-primary, #30b066) !important;
}

.elite-service-detail-wrapper .affilli-menu li a:hover::before {
    transform: scaleY(1);
}

.elite-service-detail-wrapper .affilli-menu li a i {
    margin-right: 12px !important;
    color: var(--theme-primary, #30b066) !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.elite-service-detail-wrapper .affilli-menu li.active a {
    background: linear-gradient(135deg, var(--theme-primary, #30b066) 0%, var(--theme-gradient-end, #34bd6b) 100%) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(var(--theme-rgb, 48, 176, 102), 0.3);
}

.elite-service-detail-wrapper .affilli-menu li.active a i {
    color: white !important;
}

/* ==================== SIDEBAR FOOTER ==================== */
.elite-service-detail-wrapper .sidebar-footer {
    background: linear-gradient(135deg, var(--theme-primary, #30b066) 0%, var(--theme-gradient-end, #34bd6b) 100%) !important;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(var(--theme-rgb, 48, 176, 102), 0.3);
}

.elite-service-detail-wrapper .sidebar-footer a {
    color: white !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 18px;
}

.elite-service-detail-wrapper .sidebar-footer a:hover {
    transform: scale(1.1) rotate(-2deg);
    text-shadow: 0 0 15px rgba(255,255,255,0.7);
}

/* ==================== TOGGLE BUTTON ==================== */
.elite-service-detail-wrapper .sidebar-toggle-btn {
    display: none;
    position: fixed;
    right: 20px;
    top: 180px;
    z-index: 10000;
    background: linear-gradient(135deg, var(--theme-primary, #30b066) 0%, var(--theme-gradient-end, #34bd6b) 100%) !important;
    color: white !important;
    padding: 14px 24px !important;
    border: none !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    box-shadow: 0 10px 30px rgba(var(--theme-rgb, 48, 176, 102), 0.4) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.elite-service-detail-wrapper .sidebar-toggle-btn:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px rgba(var(--theme-rgb, 48, 176, 102), 0.5) !important;
}

/* ==================== MOBILE SIDEBAR ==================== */
@media(max-width:991px){
    .elite-service-detail-wrapper .sidebar-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .elite-service-detail-wrapper .sticky-sidebar {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        left: -280px; 
        top: 0;
        width: 260px;
        height: 100%;
        background: white;
        padding: 25px;
        z-index: 9999;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
        transition: left 0.4s ease;
        border-radius: 0 20px 20px 0;
        overflow-y: auto;
    }

    .elite-service-detail-wrapper .sticky-sidebar.active { 
        left: 0; 
    }

    .elite-service-detail-wrapper #sidebarOverlay {
        display: none;
        position: fixed;
        top:0; left:0; width:100%; height:100%;
        background: rgba(0,0,0,0.4);
        z-index: 9998;
        backdrop-filter: blur(5px);
    }

    .elite-service-detail-wrapper #sidebarOverlay.active { 
        display: block; 
    }

    body.sidebar-open { 
        overflow: hidden; 
    }

    .elite-service-detail-wrapper .widget.sidebar-content {
        margin-bottom: 25px;
    }

    .elite-service-detail-wrapper .widget__head h5 {
        font-size: 1.3em;
    }

    .elite-service-detail-wrapper .affilli-menu li a {
        padding: 12px 16px !important;
        font-size: 14px !important;
    }

    .elite-service-detail-wrapper .affilli-menu li a i {
        font-size: 14px !important;
    }

    .elite-service-detail-wrapper .sidebar-footer {
        padding: 16px;
        border-radius: 16px;
    }

    .elite-service-detail-wrapper .sidebar-footer a {
        font-size: 16px;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .elite-service-detail-wrapper .pageheader {
        padding: 50px 20px !important;
    }
    
    .elite-service-detail-wrapper .pageheader__area h2 {
        font-size: 1.8em !important;
    }
    
    .elite-service-detail-wrapper .service__maincontent {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .elite-service-detail-wrapper .widget.sidebar-content {
        padding: 25px 20px;
        border-radius: 20px;
    }
}

/* hizmet detay son */

/* slider üstü buton */
/* ==============================================
   Transparent Neon Glow Buttons (--theme-primary + black)
   Hover’da yazılar beyaz kalacak
   ============================================== */

.category-explore-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 16px;
	background: transparent;
	border: 2px solid var(--theme-primary);
	color: #fff; /* yazılar beyaz */
	border-radius: 14px;
	font-weight: 700;
	font-size: 22px;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
}

/* Hover neon halo gradient arka plan çerçeve */
.category-explore-button::before {
	content:'';
	position: absolute;
	top:0; left:-100%;
	width: 300%; height:100%;
	background: linear-gradient(90deg, var(--theme-primary), #000, var(--theme-primary));
	background-size: 300% 100%;
	border-radius: 16px;
	filter: blur(15px);
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: -1;
}

.category-explore-button:hover::before {
	opacity: 1;
	animation: neonFlow 3s linear infinite;
}

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

/* Yazılar her zaman beyaz */
.category-btn-text {
	transition: all 0.35s ease;
	color: #fff;
	z-index: 1;
}

/* Icon */
.category-btn-icon-wrapper {
	width: 38px; height: 38px;
	display: flex; align-items: center; justify-content: center;
	background: var(--theme-primary);
	color: #fff;
	border-radius: 12px;
	font-size: 18px;
	box-shadow: 0 6px 15px rgba(var(--theme-primary-rgb),0.4), inset 0 -1px 0 rgba(0,0,0,0.1);
	transition: all 0.4s ease;
	position: relative; z-index: 1;
}

.category-explore-button:hover .category-btn-icon-wrapper {
	transform: rotate(360deg) scale(1.15);
	box-shadow: 0 0 15px var(--theme-primary), 0 0 25px #000;
	background: linear-gradient(90deg, var(--theme-primary), #000, var(--theme-primary));
	background-size: 300% 100%;
	animation: neonFlow 3s linear infinite;
	color: #fff;
}

/* Arrow */
.category-btn-arrow {
	width: 28px; height: 28px;
	display: flex; align-items: center; justify-content: center;
	background: transparent;
	border: 2px solid var(--theme-primary);
	border-radius: 8px;
	font-size: 12px;
	transition: all 0.35s ease;
	position: relative;
	z-index: 1;
}

.category-explore-button:hover .category-btn-arrow {
	transform: translateX(5px);
	box-shadow: 0 0 15px var(--theme-primary), 0 0 25px #000;
	background: linear-gradient(90deg, var(--theme-primary), #000, var(--theme-primary));
	background-size: 300% 100%;
	animation: neonFlow 3s linear infinite;
}

.category-btn-arrow i {
	color: var(--theme-primary);
	transition: all 0.35s ease;
}

.category-explore-button:hover .category-btn-arrow i {
	color: #fff;
	text-shadow: 0 0 5px var(--theme-primary), 0 0 10px #000;
	transform: translateX(3px);
}

/* Shine efekti */
.category-explore-button::after {
	content:'';
	position: absolute;
	top:0; left:-100%;
	width:60%; height:100%;
	background: linear-gradient(120deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
	transform: skewX(-25deg);
	transition: all 0.5s ease;
}

.category-explore-button:hover::after {
	left: 150%;
}

/* Active press */
.category-explore-button:active {
	transform: scale(0.97);
	box-shadow: inset 0 2px 6px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 991px) {
	.category-explore-button { padding: 10px 14px; font-size: 13px; gap:8px; border-radius:12px; }
	.category-btn-icon-wrapper { width:34px; height:34px; font-size:16px; border-radius:10px; }
	.category-btn-arrow { width:26px; height:26px; font-size:11px; border-radius:8px; }
}

@media (max-width: 576px) {
	.category-explore-button { padding:8px 12px; font-size:12px; border-radius:10px; gap:6px; margin-bottom:8px; }
	.category-btn-icon-wrapper { width:32px; height:32px; font-size:14px; border-radius:8px; }
	.category-btn-arrow { width:24px; height:24px; font-size:10px; border-radius:6px; }
}
/* slider üstü buton son*/

/* hakkımızda /
/* Ultra Premium About Section */
	.ultra-about-section {
		padding: 140px 0;
		background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
		position: relative;
		overflow: hidden;
	}

	/* Decorative Background */
	.about-decoration {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		overflow: hidden;
		z-index: 0;
	}

	.deco-blob {
		position: absolute;
		border-radius: 50%;
		filter: blur(100px);
		opacity: 0.15;
		animation: blobFloat 20s ease-in-out infinite;
	}

	.blob-1 {
		width: 600px;
		height: 600px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		top: -200px;
		right: -200px;
		animation-delay: 0s;
	}

	.blob-2 {
		width: 500px;
		height: 500px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		bottom: -150px;
		left: -150px;
		animation-delay: 7s;
	}

	.blob-3 {
		width: 400px;
		height: 400px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		animation-delay: 14s;
	}

	@keyframes blobFloat {
		0%, 100% { transform: translate(0, 0) scale(1); }
		25% { transform: translate(50px, -50px) scale(1.1); }
		50% { transform: translate(-30px, 30px) scale(0.9); }
		75% { transform: translate(30px, 50px) scale(1.05); }
	}

	.floating-shapes {
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.shape {
		position: absolute;
		background: var(--theme-primary, #6366f1);
		opacity: 0.08;
		animation: shapeFloat 15s ease-in-out infinite;
	}

	.shape-1 {
		width: 80px;
		height: 80px;
		border-radius: 20px;
		top: 10%;
		left: 10%;
		animation-delay: 0s;
	}

	.shape-2 {
		width: 60px;
		height: 60px;
		border-radius: 50%;
		top: 60%;
		right: 15%;
		animation-delay: 5s;
	}

	.shape-3 {
		width: 100px;
		height: 100px;
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
		bottom: 15%;
		left: 15%;
		animation-delay: 10s;
	}

	.shape-4 {
		width: 70px;
		height: 70px;
		border-radius: 50%;
		top: 30%;
		right: 25%;
		animation-delay: 3s;
	}

	@keyframes shapeFloat {
		0%, 100% { transform: translate(0, 0) rotate(0deg); }
		25% { transform: translate(20px, -20px) rotate(90deg); }
		50% { transform: translate(-15px, 15px) rotate(180deg); }
		75% { transform: translate(15px, 25px) rotate(270deg); }
	}

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

	/* ============================================
	   IMAGE SHOWCASE
	============================================ */
	.ultra-image-showcase {
		position: relative;
		padding: 30px;
	}

	.main-image-wrapper {
		position: relative;
		border-radius: 32px;
		overflow: hidden;
		box-shadow: 
			0 30px 80px rgba(0, 0, 0, 0.12),
			0 0 0 1px rgba(255, 255, 255, 0.1);
		transform-style: preserve-3d;
		transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.main-image-wrapper:hover {
		transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
		box-shadow: 
			0 40px 100px rgba(0, 0, 0, 0.18),
			0 0 0 1px rgba(255, 255, 255, 0.2);
	}

	.image-glow-effect {
		position: absolute;
		inset: -50px;
		background: radial-gradient(circle at center, var(--theme-primary, #6366f1), transparent 70%);
		opacity: 0.3;
		filter: blur(60px);
		z-index: -1;
		animation: glowPulse 4s ease-in-out infinite;
	}

	@keyframes glowPulse {
		0%, 100% { opacity: 0.3; transform: scale(1); }
		50% { opacity: 0.5; transform: scale(1.1); }
	}

	.main-image {
		width: 100%;
		height: auto;
		display: block;
		transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.main-image-wrapper:hover .main-image {
		transform: scale(1.08);
	}

	.image-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, rgba(0, 0, 0, 0.3) 100%);
		opacity: 0;
		transition: opacity 0.5s ease;
	}

	.main-image-wrapper:hover .image-overlay {
		opacity: 0.15;
	}

	/* Floating Badge */
	.floating-badge {
		position: absolute;
		top: 30px;
		right: 30px;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(20px);
		padding: 18px 24px;
		border-radius: 20px;
		display: flex;
		align-items: center;
		gap: 15px;
		box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
		animation: badgeFloat 3s ease-in-out infinite;
		border: 2px solid rgba(255, 255, 255, 0.5);
	}

	@keyframes badgeFloat {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(-10px); }
	}

	.badge-icon {
		width: 50px;
		height: 50px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 22px;
		box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
		animation: iconRotate 4s linear infinite;
	}

	@keyframes iconRotate {
		0%, 100% { transform: rotate(0deg); }
		50% { transform: rotate(15deg); }
	}

	.badge-content {
		display: flex;
		flex-direction: column;
		gap: 2px;
	}

	.badge-label {
		font-size: 11px;
		font-weight: 700;
		color: #999;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.badge-title {
		font-size: 16px;
		font-weight: 900;
		color: var(--theme-primary, #6366f1);
		letter-spacing: -0.5px;
	}

	/* Stats Card */
	.stats-card {
		position: absolute;
		bottom: 30px;
		left: 30px;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(20px);
		padding: 22px 28px;
		border-radius: 20px;
		box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
		animation: statsFloat 3s ease-in-out infinite 1.5s;
		border: 2px solid rgba(255, 255, 255, 0.5);
	}

	@keyframes statsFloat {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(-10px); }
	}

	.stats-item {
		display: flex;
		align-items: center;
		gap: 15px;
	}

	.stats-icon {
		width: 50px;
		height: 50px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 22px;
		box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
	}

	.stats-content {
		display: flex;
		flex-direction: column;
		gap: 2px;
	}

	.stats-number {
		font-size: 24px;
		font-weight: 900;
		color: var(--theme-primary, #6366f1);
		letter-spacing: -1px;
		line-height: 1;
	}

	.stats-label {
		font-size: 12px;
		font-weight: 700;
		color: #666;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	/* Decorative Squares */
	.deco-square {
		position: absolute;
		width: 100px;
		height: 100px;
		border: 3px solid var(--theme-primary, #6366f1);
		border-radius: 20px;
		opacity: 0.15;
		z-index: -1;
		animation: squareRotate 20s linear infinite;
	}

	.square-1 {
		top: -30px;
		left: -30px;
		animation-delay: 0s;
	}

	.square-2 {
		bottom: -30px;
		right: -30px;
		animation-delay: 10s;
	}

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

	.deco-circle {
		position: absolute;
		top: 50%;
		right: -50px;
		width: 120px;
		height: 120px;
		border: 3px dashed var(--theme-primary, #6366f1);
		border-radius: 50%;
		opacity: 0.15;
		z-index: -1;
		animation: circleRotate 15s linear infinite reverse;
	}

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

	/* ============================================
	   CONTENT SECTION
	============================================ */
	.ultra-content-wrapper {
		padding: 20px;
	}

	/* Section Header */
	.section-header {
		margin-bottom: 40px;
	}

	.header-badge {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 12px 24px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 50px;
		font-size: 13px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin-bottom: 25px;
		box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
		animation: badgePulse 3s ease-in-out infinite;
	}

	@keyframes badgePulse {
		0%, 100% { transform: scale(1); }
		50% { transform: scale(1.05); }
	}

	.header-badge i {
		animation: sparkle 2s ease-in-out infinite;
	}

	@keyframes sparkle {
		0%, 100% { transform: rotate(0deg) scale(1); }
		50% { transform: rotate(180deg) scale(1.2); }
	}

	.section-title {
		font-size: 36px;
		font-weight: 900;
		color: #1a1a1a;
		line-height: 1.2;
		margin: 0;
		letter-spacing: -2px;
		position: relative;
		padding-bottom: 20px;
	}

	.title-decoration {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100px;
		height: 6px;
		background: linear-gradient(90deg, var(--theme-primary, #6366f1) 0%, transparent 100%);
		border-radius: 10px;
		animation: decorationGrow 2s ease-in-out infinite;
	}

	@keyframes decorationGrow {
		0%, 100% { width: 100px; }
		50% { width: 150px; }
	}

	/* Content Body */
	.content-body {
		margin-bottom: 40px;
	}

	.content-subtitle {
		font-size: 26px;
		font-weight: 800;
		color: #1a1a1a;
		margin: 0 0 25px 0;
		line-height: 1.3;
		position: relative;
		padding-left: 40px;
	}

	.quote-icon {
		position: absolute;
		left: 0;
		top: 0;
		font-size: 28px;
		color: var(--theme-primary, #6366f1);
		opacity: 0.3;
	}

	.content-description {
		font-size: 16px;
		color: #666;
		line-height: 1.9;
		margin-bottom: 35px;
		text-align: justify;
	}

	.content-description p {
		margin: 0 0 18px 0;
	}

	.content-description p:last-child {
		margin-bottom: 0;
	}

	/* Feature Highlights */
	.feature-highlights {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 18px;
		margin-top: 30px;
	}

	.feature-item {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 16px 20px;
		background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
		border-radius: 16px;
		border: 2px solid #e8e8e8;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		cursor: pointer;
	}

	.feature-item:hover {
		border-color: var(--theme-primary, #6366f1);
		transform: translateY(-5px);
		box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
		background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	}

	.feature-icon {
		width: 40px;
		height: 40px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 18px;
		flex-shrink: 0;
		box-shadow: 0 6px 18px rgba(99, 102, 241, 0.3);
		transition: transform 0.3s ease;
	}

	.feature-item:hover .feature-icon {
		transform: scale(1.15) rotate(10deg);
	}

	.feature-item span {
		font-size: 14px;
		font-weight: 700;
		color: #1a1a1a;
		letter-spacing: 0.3px;
	}

	/* Action Buttons */
	.action-buttons {
		display: flex;
		gap: 16px;
		flex-wrap: wrap;
		margin-top: 40px;
	}

	.btn-primary-action,
	.btn-secondary-action {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		padding: 18px 36px;
		border-radius: 16px;
		font-weight: 800;
		font-size: 15px;
		text-decoration: none;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		cursor: pointer;
		border: 2px solid;
		position: relative;
		overflow: hidden;
	}

	.btn-primary-action {
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		border-color: var(--theme-primary, #6366f1);
		color: white;
		box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
		flex: 1;
		min-width: 200px;
	}

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

	.btn-primary-action:hover::before {
		width: 400px;
		height: 400px;
	}

	.btn-primary-action:hover {
		gap: 18px;
		transform: translateY(-5px) scale(1.02);
		box-shadow: 0 18px 50px rgba(99, 102, 241, 0.5);
		color: white;
	}

	.btn-secondary-action {
		background: white;
		border-color: #e8e8e8;
		color: var(--theme-primary, #6366f1);
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	}

	.btn-secondary-action:hover {
		background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
		border-color: var(--theme-primary, #6366f1);
		transform: translateY(-5px);
		box-shadow: 0 12px 35px rgba(99, 102, 241, 0.2);
		color: var(--theme-primary, #6366f1);
	}

	.btn-primary-action .btn-text,
	.btn-primary-action .btn-icon,
	.btn-secondary-action .btn-text,
	.btn-secondary-action .btn-icon {
		position: relative;
		z-index: 1;
	}

	.btn-icon {
		font-size: 18px;
		transition: transform 0.3s ease;
	}

	.btn-primary-action:hover .btn-icon {
		transform: translateX(5px);
	}

	/* ============================================
	   RESPONSIVE DESIGN
	============================================ */
	@media (max-width: 1200px) {
		.ultra-about-section {
			padding: 100px 0;
		}

		.section-title {
			font-size: 44px;
		}

		.content-subtitle {
			font-size: 22px;
		}

		.floating-badge,
		.stats-card {
			padding: 15px 20px;
		}
	}

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

		.section-title {
			font-size: 38px;
		}

		.content-subtitle {
			font-size: 20px;
		}

		.content-description {
			font-size: 15px;
		}

		.ultra-image-showcase {
			padding: 20px;
			margin-bottom: 40px;
		}

		.feature-highlights {
			grid-template-columns: 1fr;
		}
	}

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

		.deco-blob,
		.floating-shapes {
			display: none;
		}

		.ultra-image-showcase {
			padding: 10px;
		}

		.main-image-wrapper {
			border-radius: 24px;
		}

		.section-title {
			font-size: 32px;
			letter-spacing: -1px;
		}

		.content-subtitle {
			font-size: 18px;
			padding-left: 35px;
		}

		.quote-icon {
			font-size: 24px;
		}

		.content-description {
			font-size: 14px;
			line-height: 1.8;
		}

		.floating-badge {
			top: 20px;
			right: 20px;
			padding: 12px 18px;
		}

		.badge-icon,
		.stats-icon {
			width: 45px;
			height: 45px;
			font-size: 20px;
		}

		.stats-card {
			bottom: 20px;
			left: 20px;
		}

		.stats-number {
			font-size: 20px;
		}

		.deco-square,
		.deco-circle {
			display: none;
		}

		.action-buttons {
			flex-direction: column;
		}

		.btn-primary-action,
		.btn-secondary-action {
			width: 100%;
			justify-content: center;
			min-width: unset;
		}
	}

	@media (max-width: 576px) {
		.ultra-about-section {
			padding: 50px 0;
		}

		.header-badge {
			font-size: 11px;
			padding: 10px 18px;
		}

		.section-title {
			font-size: 26px;
		}

		.content-subtitle {
			font-size: 17px;
			padding-left: 30px;
		}

		.content-description {
			font-size: 13px;
			text-align: left;
		}

		.floating-badge {
			flex-direction: column;
			align-items: center;
			text-align: center;
			gap: 10px;
		}

		.stats-card {
			left: 50%;
			transform: translateX(-50%);
			bottom: 15px;
		}

		.feature-item {
			padding: 14px 16px;
		}

		.feature-item span {
			font-size: 13px;
		}

		.btn-primary-action,
		.btn-secondary-action {
			padding: 15px 28px;
			font-size: 13px;
		}
	}
	/* hakkımızda son */
	
	
	
	/* ansayfa öne cıkan ürünler */
	/* ============================================
	   ULTRA PRODUCTS SECTION
	============================================ */
	.ultra-products-section {
		padding: 140px 0;
		background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
		position: relative;
		overflow: hidden;
	}

	/* Decorative Background */
	.products-decoration {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		overflow: hidden;
		z-index: 0;
	}

	.deco-blob {
		position: absolute;
		border-radius: 50%;
		filter: blur(120px);
		opacity: 0.12;
		animation: blobFloat 25s ease-in-out infinite;
	}

	.blob-1 {
		width: 700px;
		height: 700px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		top: -300px;
		left: -200px;
		animation-delay: 0s;
	}

	.blob-2 {
		width: 600px;
		height: 600px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		top: 40%;
		right: -200px;
		animation-delay: 8s;
	}

	.blob-3 {
		width: 500px;
		height: 500px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		bottom: -150px;
		left: 30%;
		animation-delay: 16s;
	}

	@keyframes blobFloat {
		0%, 100% { transform: translate(0, 0) scale(1); }
		25% { transform: translate(60px, -60px) scale(1.15); }
		50% { transform: translate(-40px, 40px) scale(0.85); }
		75% { transform: translate(40px, 60px) scale(1.1); }
	}

	.floating-particles {
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.particle {
		position: absolute;
		width: 8px;
		height: 8px;
		background: var(--theme-primary, #6366f1);
		border-radius: 50%;
		opacity: 0.3;
		animation: particleFloat 20s ease-in-out infinite;
	}

	.particle-1 { top: 10%; left: 15%; animation-delay: 0s; }
	.particle-2 { top: 30%; right: 20%; animation-delay: 4s; }
	.particle-3 { bottom: 20%; left: 25%; animation-delay: 8s; }
	.particle-4 { top: 60%; right: 15%; animation-delay: 12s; }
	.particle-5 { bottom: 30%; left: 40%; animation-delay: 16s; }

	@keyframes particleFloat {
		0%, 100% { transform: translate(0, 0); opacity: 0.3; }
		25% { transform: translate(30px, -30px); opacity: 0.6; }
		50% { transform: translate(-20px, 20px); opacity: 0.4; }
		75% { transform: translate(20px, 30px); opacity: 0.5; }
	}

	.ultra-products-section > .container {
		position: relative;
		z-index: 1;
	}

	/* ============================================
	   SECTION HEADER
	============================================ */
	.products-section-header {
		text-align: center;
		margin-bottom: 80px;
		animation: fadeInDown 0.8s ease-out;
	}

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

	.header-badge-wrapper {
		margin-bottom: 25px;
	}

	.header-badge {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		padding: 14px 32px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 50px;
		font-size: 14px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 1.5px;
		box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
		animation: badgeFloat 3s ease-in-out infinite;
		border: 2px solid rgba(255, 255, 255, 0.2);
	}

	@keyframes badgeFloat {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(-8px); }
	}

	.header-badge i {
		font-size: 18px;
		animation: crownRotate 4s linear infinite;
	}

	@keyframes crownRotate {
		0%, 100% { transform: rotate(0deg); }
		25% { transform: rotate(-10deg); }
		75% { transform: rotate(10deg); }
	}

	.products-main-title {
		font-size: 36px;
		font-weight: 900;
		color: #1a1a1a;
		margin: 0 0 20px 0;
		line-height: 1.2;
		letter-spacing: -2px;
		position: relative;
		display: inline-block;
	}

	.title-glow {
		position: absolute;
		bottom: -10px;
		left: 0;
		width: 100%;
		height: 8px;
		background: linear-gradient(90deg, var(--theme-primary, #6366f1) 0%, transparent 100%);
		border-radius: 10px;
		filter: blur(8px);
		opacity: 0.6;
		animation: glowPulse 3s ease-in-out infinite;
	}

	@keyframes glowPulse {
		0%, 100% { opacity: 0.6; width: 100%; }
		50% { opacity: 0.9; width: 120%; }
	}

	.products-subtitle {
		font-size: 18px;
		color: #666;
		margin: 0 0 30px 0;
		font-weight: 600;
		letter-spacing: 0.5px;
	}

	.header-decoration {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 15px;
		margin-top: 30px;
	}

	.deco-line {
		width: 100px;
		height: 3px;
		background: linear-gradient(90deg, transparent, var(--theme-primary, #6366f1), transparent);
		border-radius: 10px;
		animation: lineGrow 2s ease-in-out infinite;
	}

	@keyframes lineGrow {
		0%, 100% { width: 100px; }
		50% { width: 140px; }
	}

	.deco-dot {
		width: 12px;
		height: 12px;
		background: var(--theme-primary, #6366f1);
		border-radius: 50%;
		box-shadow: 0 0 20px var(--theme-primary, #6366f1);
		animation: dotPulse 2s ease-in-out infinite;
	}

	@keyframes dotPulse {
		0%, 100% { transform: scale(1); opacity: 1; }
		50% { transform: scale(1.5); opacity: 0.7; }
	}

	/* ============================================
	   PRODUCTS GRID
	============================================ */
	.products-wrapper {
		margin-bottom: 80px;
	}

	.products-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 35px;
	}

	.product-item {
		animation: fadeInUp 0.6s ease-out forwards;
		opacity: 0;
	}

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

	/* ============================================
	   PRODUCT CARD
	============================================ */
	.ultra-product-card {
		background: white;
		border-radius: 28px;
		overflow: hidden;
		border: 2px solid #e8e8e8;
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
		display: flex;
		flex-direction: column;
		height: 100%;
		position: relative;
		transform-style: preserve-3d;
	}

	.ultra-product-card::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, transparent 100%);
		opacity: 0;
		transition: opacity 0.4s ease;
		pointer-events: none;
		z-index: 1;
	}

	.ultra-product-card:hover {
		border-color: var(--theme-primary, #6366f1);
		box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
		transform: translateY(-12px) scale(1.02);
	}

	.ultra-product-card:hover::before {
		opacity: 0.03;
	}

	.card-border {
		position: absolute;
		inset: -2px;
		border-radius: 28px;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1), transparent);
		opacity: 0;
		transition: opacity 0.4s ease;
		z-index: -1;
		pointer-events: none;
	}

	.ultra-product-card:hover .card-border {
		opacity: 1;
	}

	/* Image Section */
	.product-image-wrapper {
		position: relative;
		width: 100%;
		height: 320px;
		overflow: hidden;
		background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
	}

	.image-glow {
		position: absolute;
		inset: -30px;
		background: radial-gradient(circle at center, var(--theme-primary, #6366f1), transparent 70%);
		opacity: 0;
		filter: blur(40px);
		z-index: 0;
		transition: opacity 0.4s ease;
	}

	.ultra-product-card:hover .image-glow {
		opacity: 0.4;
	}

	.product-image-link {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 1;
	}

	.product-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.ultra-product-card:hover .product-image {
		transform: scale(1.15) rotate(2deg);
	}

	.image-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, rgba(0, 0, 0, 0.5) 100%);
		opacity: 0;
		transition: opacity 0.4s ease;
		z-index: 1;
	}

	.ultra-product-card:hover .image-overlay {
		opacity: 0.2;
	}

	/* Badges */
	.product-badges {
		position: absolute;
		top: 20px;
		left: 20px;
		right: 20px;
		display: flex;
		gap: 10px;
		z-index: 2;
		flex-wrap: wrap;
	}

	.badge {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		padding: 10px 16px;
		border-radius: 50px;
		font-size: 11px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		color: white;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
		animation: badgePop 0.5s ease-out;
		backdrop-filter: blur(10px);
	}

	@keyframes badgePop {
		0% { transform: scale(0); opacity: 0; }
		50% { transform: scale(1.1); }
		100% { transform: scale(1); opacity: 1; }
	}

	.badge-new {
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, rgba(99, 102, 241, 0.9) 100%);
	}

	.badge-sale {
		background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
		animation-delay: 0.1s;
	}

	.badge i {
		font-size: 13px;
		animation: iconSpin 3s linear infinite;
	}

	@keyframes iconSpin {
		0%, 100% { transform: rotate(0deg); }
		50% { transform: rotate(15deg); }
	}

	/* Quick View */
	.quick-view {
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%) translateY(20px);
		opacity: 0;
		z-index: 3;
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.ultra-product-card:hover .quick-view {
		transform: translateX(-50%) translateY(0);
		opacity: 1;
	}

	.quick-view-btn {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 12px 24px;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		color: var(--theme-primary, #6366f1);
		border-radius: 50px;
		font-size: 13px;
		font-weight: 700;
		text-decoration: none;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
		border: 2px solid rgba(255, 255, 255, 0.5);
		transition: all 0.3s ease;
	}

	.quick-view-btn:hover {
		background: var(--theme-primary, #6366f1);
		color: white;
		transform: scale(1.05);
		box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
	}

	/* Content Section */
	.product-content {
		padding: 28px;
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 14px;
		position: relative;
		z-index: 2;
	}

	.product-category {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 8px 16px;
		background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
		color: var(--theme-primary, #6366f1);
		border-radius: 50px;
		font-size: 11px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		width: fit-content;
		border: 1px solid #e8e8e8;
	}

	.product-title {
		font-size: 19px;
		font-weight: 800;
		margin: 0;
		line-height: 1.3;
		min-height: 50px;
	}

	.product-title a {
		color: #1a1a1a;
		text-decoration: none;
		transition: color 0.3s ease;
	}

	.product-title a:hover {
		color: var(--theme-primary, #6366f1);
	}

	.ultra-product-card:hover .product-title a {
		color: var(--theme-primary, #6366f1);
	}

	/* Rating */
	.product-rating {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.stars {
		display: flex;
		gap: 3px;
		color: #ffc107;
		font-size: 14px;
	}

	.rating-text {
		font-size: 13px;
		color: #666;
		font-weight: 600;
	}

	/* Price */
	.product-price {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 18px 0;
		border-top: 2px solid #f5f5f5;
		border-bottom: 2px solid #f5f5f5;
		margin: 8px 0;
	}

	.price-wrapper {
		display: flex;
		align-items: center;
		gap: 12px;
		flex-wrap: wrap;
	}

	.price-current {
		font-size: 24px;
		font-weight: 900;
		color: var(--theme-primary, #6366f1);
		letter-spacing: -0.5px;
	}

	.price-old {
		font-size: 16px;
		color: #999;
		text-decoration: line-through;
		font-weight: 600;
	}

	.discount-badge {
		padding: 6px 12px;
		background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
		color: white;
		border-radius: 50px;
		font-size: 11px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
	}

	/* Actions */
	.product-actions {
		display: flex;
		gap: 12px;
		margin-top: auto;
	}

	.btn-main {
		flex: 1;
		padding: 16px 24px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border: none;
		border-radius: 14px;
		font-size: 14px;
		font-weight: 800;
		text-decoration: none;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		cursor: pointer;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-transform: uppercase;
		letter-spacing: 0.5px;
		box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
		position: relative;
		overflow: hidden;
	}

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

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

	.btn-main:hover {
		gap: 14px;
		transform: scale(1.05);
		box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
		color: white;
	}

	.btn-main span,
	.btn-main i {
		position: relative;
		z-index: 1;
	}

	.action-icons {
		display: flex;
		gap: 10px;
	}

	.action-btn {
		width: 50px;
		height: 50px;
		border: 2px solid;
		border-radius: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 18px;
		cursor: pointer;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-decoration: none;
		flex-shrink: 0;
		background: white;
	}

	.btn-phone {
		color: var(--theme-primary, #6366f1);
		border-color: var(--theme-primary, #6366f1);
	}

	.btn-phone:hover {
		background: var(--theme-primary, #6366f1);
		color: white;
		transform: scale(1.1) rotate(-5deg);
		box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
	}

	.btn-whatsapp {
		color: #25d366;
		border-color: #25d366;
	}

	.btn-whatsapp:hover {
		background: #25d366;
		color: white;
		transform: scale(1.1) rotate(5deg);
		box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
	}

	/* ============================================
	   VIEW ALL BUTTON
	============================================ */
	.products-cta {
		text-align: center;
		animation: fadeInUp 0.8s ease-out;
	}

	.btn-view-all-products {
		display: inline-flex;
		align-items: center;
		gap: 16px;
		padding: 22px 55px;
		background: white;
		color: var(--theme-primary, #6366f1);
		text-decoration: none;
		border-radius: 20px;
		font-weight: 800;
		font-size: 17px;
		box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-transform: uppercase;
		letter-spacing: 0.5px;
		border: 3px solid var(--theme-primary, #6366f1);
		position: relative;
		overflow: hidden;
	}

	.btn-bg {
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		transition: left 0.5s ease;
		z-index: 0;
	}

	.btn-view-all-products:hover .btn-bg {
		left: 0;
	}

	.btn-view-all-products:hover {
		gap: 20px;
		transform: translateY(-8px) scale(1.05);
		box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
		color: white;
	}

	.btn-view-all-products .btn-text,
	.btn-view-all-products i {
		position: relative;
		z-index: 1;
	}

	/* ============================================
	   RESPONSIVE DESIGN
	============================================ */
	@media (max-width: 1200px) {
		.ultra-products-section {
			padding: 100px 0;
		}

		.products-main-title {
			font-size: 48px;
		}

		.products-grid {
			grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
			gap: 30px;
		}
	}

	@media (max-width: 992px) {
		.ultra-products-section {
			padding: 80px 0;
		}

		.products-section-header {
			margin-bottom: 60px;
		}

		.products-main-title {
			font-size: 42px;
		}

		.products-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 25px;
		}

		.product-image-wrapper {
			height: 280px;
		}

		.product-title {
			font-size: 17px;
			min-height: 44px;
		}
	}

	@media (max-width: 768px) {
		.ultra-products-section {
			padding: 60px 0;
		}

		.deco-blob,
		.floating-particles {
			display: none;
		}

		.header-badge {
			padding: 12px 24px;
			font-size: 12px;
		}

		.products-main-title {
			font-size: 36px;
			letter-spacing: -1px;
		}

		.products-subtitle {
			font-size: 16px;
		}

		.products-wrapper {
			margin-bottom: 60px;
			overflow-x: auto;
			-webkit-overflow-scrolling: touch;
			margin-left: -15px;
			margin-right: -15px;
			padding: 5px 15px 15px;
		}

		.products-grid {
			display: flex;
			flex-wrap: nowrap;
			gap: 20px;
			grid-template-columns: none;
		}

		.product-item {
			flex: 0 0 auto;
			width: 300px;
			min-width: 300px;
		}

		.ultra-product-card {
			border-radius: 24px;
		}

		.product-image-wrapper {
			height: 300px;
		}

		.product-content {
			padding: 22px;
		}

		.product-title {
			font-size: 16px;
		}

		.btn-main {
			padding: 14px 20px;
			font-size: 13px;
		}

		.action-btn {
			width: 46px;
			height: 46px;
			font-size: 16px;
		}

		.btn-view-all-products {
			padding: 18px 40px;
			font-size: 15px;
		}
	}

	@media (max-width: 576px) {
		.ultra-products-section {
			padding: 50px 0;
		}

		.header-badge {
			font-size: 11px;
			padding: 10px 20px;
		}

		.products-main-title {
			font-size: 28px;
		}

		.products-subtitle {
			font-size: 14px;
		}

		.product-item {
			width: 280px;
			min-width: 280px;
		}

		.product-image-wrapper {
			height: 280px;
		}

		.product-content {
			padding: 20px;
		}

		.product-category {
			font-size: 10px;
			padding: 6px 12px;
		}

		.product-title {
			font-size: 15px;
			min-height: 40px;
		}

		.price-current {
			font-size: 20px;
		}

		.price-old {
			font-size: 14px;
		}

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

		.btn-main {
			padding: 13px 18px;
			font-size: 12px;
			gap: 8px;
		}

		.action-btn {
			width: 44px;
			height: 44px;
			font-size: 15px;
		}

		.btn-view-all-products {
			padding: 16px 35px;
			font-size: 14px;
			width: 100%;
			max-width: 320px;
		}
	}
	/* anasayfa öne cıkar ürünler son */
	
	/* anasayfa ürün kategori */
	/* =============================================
	   ULTRA CATEGORY SECTION
	   ============================================= */
	.ultra-category-section {
		padding: 140px 0;
		background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
		position: relative;
		overflow: hidden;
	}

	/* Decorative Background */
	.category-decoration {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		overflow: hidden;
		z-index: 0;
	}

	.deco-blob {
		position: absolute;
		border-radius: 50%;
		filter: blur(140px);
		opacity: 0.1;
		animation: blobFloat 30s ease-in-out infinite;
	}

	.blob-1 {
		width: 800px;
		height: 800px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		top: -300px;
		right: -300px;
		animation-delay: 0s;
	}

	.blob-2 {
		width: 600px;
		height: 600px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		bottom: -200px;
		left: -200px;
		animation-delay: 10s;
	}

	.blob-3 {
		width: 700px;
		height: 700px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		animation-delay: 20s;
	}

	@keyframes blobFloat {
		0%, 100% { transform: translate(0, 0) scale(1); }
		25% { transform: translate(80px, -80px) scale(1.2); }
		50% { transform: translate(-50px, 50px) scale(0.8); }
		75% { transform: translate(50px, 80px) scale(1.1); }
	}

	.floating-orbs {
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.orb {
		position: absolute;
		width: 15px;
		height: 15px;
		background: var(--theme-primary, #6366f1);
		border-radius: 50%;
		opacity: 0.2;
		box-shadow: 0 0 30px var(--theme-primary, #6366f1);
		animation: orbFloat 25s ease-in-out infinite;
	}

	.orb-1 { top: 15%; left: 10%; animation-delay: 0s; }
	.orb-2 { top: 70%; right: 15%; animation-delay: 6s; }
	.orb-3 { bottom: 25%; left: 20%; animation-delay: 12s; }
	.orb-4 { top: 40%; right: 25%; animation-delay: 18s; }

	@keyframes orbFloat {
		0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
		25% { transform: translate(40px, -40px) scale(1.3); opacity: 0.4; }
		50% { transform: translate(-30px, 30px) scale(0.7); opacity: 0.3; }
		75% { transform: translate(30px, 40px) scale(1.1); opacity: 0.35; }
	}

	.grid-pattern {
		position: absolute;
		inset: 0;
		background-image: 
			linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
			linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
		background-size: 50px 50px;
		opacity: 0.5;
	}

	.ultra-category-section > .container {
		position: relative;
		z-index: 1;
	}

	/* ============================================
	   SECTION HEADER
	   ============================================ */
	.ultra-section-header {
		text-align: center;
		margin-bottom: 90px;
		animation: fadeInDown 0.8s ease-out;
	}

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

	.header-badge-group {
		margin-bottom: 30px;
	}

	.premium-badge {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		padding: 14px 36px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 50px;
		font-size: 14px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 2px;
		box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
		animation: badgeFloat 3s ease-in-out infinite;
		border: 2px solid rgba(255, 255, 255, 0.3);
	}

	@keyframes badgeFloat {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(-10px); }
	}

	.premium-badge i {
		font-size: 18px;
		animation: gemSparkle 2s ease-in-out infinite;
	}

	@keyframes gemSparkle {
		0%, 100% { transform: rotate(0deg) scale(1); filter: brightness(1); }
		50% { transform: rotate(15deg) scale(1.2); filter: brightness(1.5); }
	}

	.ultra-section-title {
		font-size: 36px;
		font-weight: 900;
		color: #1a1a1a;
		margin: 0 0 20px 0;
		line-height: 1.2;
		letter-spacing: -2px;
		position: relative;
		display: inline-block;
	}

	.title-underline {
		position: relative;
		height: 8px;
		margin-top: 15px;
	}

	.underline-main {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 120px;
		height: 5px;
		background: linear-gradient(90deg, transparent, var(--theme-primary, #6366f1), transparent);
		border-radius: 10px;
		animation: underlineGrow 2s ease-in-out infinite;
	}

	@keyframes underlineGrow {
		0%, 100% { width: 120px; opacity: 1; }
		50% { width: 180px; opacity: 0.8; }
	}

	.underline-dot {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 14px;
		height: 14px;
		background: var(--theme-primary, #6366f1);
		border-radius: 50%;
		box-shadow: 0 0 25px var(--theme-primary, #6366f1);
		animation: dotPulse 2s ease-in-out infinite;
	}

	@keyframes dotPulse {
		0%, 100% { transform: translate(-50%, -50%) scale(1); }
		50% { transform: translate(-50%, -50%) scale(1.5); }
	}

	.section-description {
		font-size: 19px;
		color: #666;
		margin: 25px 0 35px 0;
		font-weight: 600;
		letter-spacing: 0.3px;
	}

	.header-decorative-line {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
		margin-top: 35px;
	}

	.line-segment {
		width: 120px;
		height: 2px;
		background: linear-gradient(90deg, transparent, var(--theme-primary, #6366f1), transparent);
		border-radius: 10px;
		animation: lineShimmer 3s ease-in-out infinite;
	}

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

	.line-center {
		width: 45px;
		height: 45px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 16px;
		box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
		animation: starRotate 4s linear infinite;
	}

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

	/* ============================================
	   CATEGORY GRID
	   ============================================ */
	.ultra-category-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
		margin-bottom: 90px;
	}

	.category-item {
		animation: fadeInUp 0.6s ease-out forwards;
		opacity: 0;
	}

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

	/* ============================================
	   CATEGORY CARD
	   ============================================ */
	.ultra-category-card {
		background: white;
		border-radius: 32px;
		overflow: hidden;
		border: 2px solid #e8e8e8;
		transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
		position: relative;
		transform-style: preserve-3d;
	}

	.ultra-category-card::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, transparent 100%);
		opacity: 0;
		transition: opacity 0.5s ease;
		pointer-events: none;
		z-index: 1;
	}

	.ultra-category-card:hover {
		border-color: var(--theme-primary, #6366f1);
		box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
		transform: translateY(-15px) scale(1.03) rotateX(3deg);
	}

	.ultra-category-card:hover::before {
		opacity: 0.04;
	}

	.category-link-wrapper {
		display: block;
		text-decoration: none;
		position: relative;
		z-index: 2;
	}

	.card-border-glow {
		position: absolute;
		inset: -3px;
		border-radius: 32px;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1), transparent);
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: -1;
		pointer-events: none;
		filter: blur(10px);
	}

	.ultra-category-card:hover .card-border-glow {
		opacity: 0.6;
	}

	/* Image Container */
	.category-image-container {
		position: relative;
		width: 100%;
		height: 260px;
		overflow: hidden;
		background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
	}

	.image-glow-effect {
		position: absolute;
		inset: -40px;
		background: radial-gradient(circle at center, var(--theme-primary, #6366f1), transparent 70%);
		opacity: 0;
		filter: blur(50px);
		z-index: 0;
		transition: opacity 0.5s ease;
	}

	.ultra-category-card:hover .image-glow-effect {
		opacity: 0.5;
	}

	.category-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
		position: relative;
		z-index: 1;
	}

	.ultra-category-card:hover .category-image {
		transform: scale(1.2) rotate(3deg);
	}

	.image-gradient-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, rgba(0, 0, 0, 0.6) 100%);
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: 2;
	}

	.ultra-category-card:hover .image-gradient-overlay {
		opacity: 0.25;
	}

	/* Hover Overlay */
	.category-hover-overlay {
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.85);
		backdrop-filter: blur(10px);
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: 3;
	}

	.ultra-category-card:hover .category-hover-overlay {
		opacity: 1;
	}

	.overlay-content-wrapper {
		text-align: center;
		transform: translateY(30px);
		transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.ultra-category-card:hover .overlay-content-wrapper {
		transform: translateY(0);
	}

	.overlay-icon-circle {
		width: 80px;
		height: 80px;
		background: var(--theme-primary, #6366f1);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 28px;
		margin: 0 auto 20px;
		box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
		animation: iconPulse 2s ease-in-out infinite;
	}

	@keyframes iconPulse {
		0%, 100% { transform: scale(1); }
		50% { transform: scale(1.1); }
	}

	.overlay-text {
		display: block;
		color: white;
		font-size: 16px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	/* Premium Badge */
	.category-badge {
		position: absolute;
		top: 20px;
		right: 20px;
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 10px 18px;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		border-radius: 50px;
		color: var(--theme-primary, #6366f1);
		font-size: 12px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
		z-index: 4;
		border: 2px solid rgba(255, 255, 255, 0.5);
		animation: badgeBounce 3s ease-in-out infinite;
	}

	@keyframes badgeBounce {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(-8px); }
	}

	.category-badge i {
		font-size: 14px;
		animation: certificateRotate 4s linear infinite;
	}

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

	/* Corner Accents */
	.corner-accent {
		position: absolute;
		width: 40px;
		height: 40px;
		border: 3px solid var(--theme-primary, #6366f1);
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: 4;
	}

	.top-left {
		top: 15px;
		left: 15px;
		border-right: none;
		border-bottom: none;
		border-radius: 8px 0 0 0;
	}

	.bottom-right {
		bottom: 15px;
		right: 15px;
		border-left: none;
		border-top: none;
		border-radius: 0 0 8px 0;
	}

	.ultra-category-card:hover .corner-accent {
		opacity: 1;
	}

	/* Content Container */
	.category-content-container {
		padding: 24px;
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.category-tag {
		display: none;
	}

	.category-title-text {
		font-size: 20px;
		font-weight: 800;
		color: #1a1a1a;
		margin: 0;
		line-height: 1.3;
		min-height: 52px;
		transition: color 0.3s ease;
	}

	.ultra-category-card:hover .category-title-text {
		color: var(--theme-primary, #6366f1);
	}

	/* Features */
	.category-features {
		display: none;
	}

	.feature-item {
		display: none;
	}

	/* Action Footer */
	.category-action-footer {
		display: flex;
		gap: 12px;
		align-items: center;
		margin-top: 8px;
		padding-top: 16px;
		border-top: 2px solid #f5f5f5;
	}

	.btn-explore-category {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		padding: 16px 24px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 14px;
		font-size: 14px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
		position: relative;
		overflow: hidden;
	}

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

	.btn-explore-category:hover::before {
		width: 300px;
		height: 300px;
	}

	.ultra-category-card:hover .btn-explore-category {
		gap: 14px;
		transform: scale(1.05);
		box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
	}

	.btn-explore-category .btn-text,
	.btn-explore-category i {
		position: relative;
		z-index: 1;
	}

	.btn-icon-wrapper {
		flex-shrink: 0;
	}

	.icon-circle {
		width: 52px;
		height: 52px;
		background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
		border-radius: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--theme-primary, #6366f1);
		font-size: 18px;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		border: 2px solid #e8e8e8;
	}

	.ultra-category-card:hover .icon-circle {
		background: var(--theme-primary, #6366f1);
		color: white;
		transform: scale(1.1) rotate(15deg);
		border-color: var(--theme-primary, #6366f1);
		box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
	}

	/* ============================================
	   VIEW ALL BUTTON
	   ============================================ */
	.ultra-section-cta {
		text-align: center;
		animation: fadeInUp 0.8s ease-out;
	}

	.btn-view-all-categories {
		display: inline-flex;
		align-items: center;
		gap: 18px;
		padding: 22px 60px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		text-decoration: none;
		border-radius: 20px;
		font-weight: 900;
		font-size: 17px;
		box-shadow: 0 18px 50px rgba(99, 102, 241, 0.4);
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-transform: uppercase;
		letter-spacing: 0.5px;
		border: 3px solid transparent;
		position: relative;
		overflow: hidden;
	}

	.btn-shine {
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
		transition: left 0.6s ease;
	}

	.btn-view-all-categories:hover .btn-shine {
		left: 100%;
	}

	.btn-view-all-categories:hover {
		gap: 22px;
		transform: translateY(-10px) scale(1.05);
		box-shadow: 0 25px 70px rgba(99, 102, 241, 0.5);
		border-color: rgba(255, 255, 255, 0.3);
		color: white;
	}

	.btn-view-all-categories .btn-main-text,
	.btn-view-all-categories i {
		position: relative;
		z-index: 1;
	}

	/* ============================================
	   RESPONSIVE DESIGN
	   ============================================ */
	@media (max-width: 1200px) {
		.ultra-category-section {
			padding: 100px 0;
		}

		.ultra-section-title {
			font-size: 50px;
		}

		.ultra-category-grid {
			grid-template-columns: repeat(3, 1fr);
			gap: 35px;
		}

		.category-image-container {
			height: 300px;
		}
	}

	@media (max-width: 992px) {
		.ultra-category-section {
			padding: 80px 0;
		}

		.ultra-section-header {
			margin-bottom: 70px;
		}

		.ultra-section-title {
			font-size: 44px;
		}

		.ultra-category-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 30px;
		}

		.category-image-container {
			height: 240px;
		}

		.category-title-text {
			font-size: 20px;
			min-height: 52px;
		}
	}

	@media (max-width: 768px) {
		.ultra-category-section {
			padding: 60px 0;
		}

		.deco-blob,
		.floating-orbs,
		.grid-pattern {
			display: none;
		}

		.premium-badge {
			padding: 12px 28px;
			font-size: 12px;
		}

		.ultra-section-title {
			font-size: 36px;
			letter-spacing: -1px;
		}

		.section-description {
			font-size: 16px;
		}

		.ultra-category-grid {
			grid-template-columns: 1fr;
			gap: 25px;
			margin-bottom: 70px;
		}

		.ultra-category-card {
			border-radius: 24px;
		}

		.category-image-container {
			height: 260px;
		}

		.category-content-container {
			padding: 26px;
		}

		.category-title-text {
			font-size: 19px;
			min-height: auto;
		}

		.btn-view-all-categories {
			padding: 18px 45px;
			font-size: 15px;
		}
	}

	@media (max-width: 576px) {
		.ultra-category-section {
			padding: 50px 0;
		}

		.premium-badge {
			font-size: 11px;
			padding: 10px 22px;
		}

		.ultra-section-title {
			font-size: 28px;
		}

		.section-description {
			font-size: 15px;
		}

		.line-segment {
			width: 80px;
		}

		.line-center {
			width: 40px;
			height: 40px;
			font-size: 14px;
		}

		.category-image-container {
			height: 220px;
		}

		.category-content-container {
			padding: 20px;
		}

		.category-badge {
			top: 15px;
			right: 15px;
			font-size: 11px;
			padding: 8px 14px;
		}

		.category-title-text {
			font-size: 18px;
		}

		.feature-item {
			font-size: 12px;
		}

		.btn-explore-category {
			padding: 14px 20px;
			font-size: 13px;
		}

		.icon-circle {
			width: 48px;
			height: 48px;
			font-size: 16px;
		}

		.btn-view-all-categories {
			padding: 16px 35px;
			font-size: 14px;
			width: 100%;
			max-width: 340px;
		}
	}
	/* anasayfa ürün kategori son */
	
	/* ana sayfa proje */
	/* ============================================
	   ULTRA PROJECTS SECTION
	   ============================================ */
	.ultra-projects-section {
		padding: 140px 0;
		background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
		position: relative;
		overflow: hidden;
	}

	/* Decorative Background */
	.projects-decoration {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		overflow: hidden;
		z-index: 0;
	}

	.deco-blob {
		position: absolute;
		border-radius: 50%;
		filter: blur(150px);
		opacity: 0.08;
		animation: blobFloat 35s ease-in-out infinite;
	}

	.blob-1 {
		width: 900px;
		height: 900px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		top: -400px;
		left: -300px;
		animation-delay: 0s;
	}

	.blob-2 {
		width: 700px;
		height: 700px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		top: 40%;
		right: -250px;
		animation-delay: 12s;
	}

	.blob-3 {
		width: 800px;
		height: 800px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		bottom: -300px;
		left: 40%;
		animation-delay: 24s;
	}

	@keyframes blobFloat {
		0%, 100% { transform: translate(0, 0) scale(1); }
		25% { transform: translate(100px, -100px) scale(1.25); }
		50% { transform: translate(-60px, 60px) scale(0.75); }
		75% { transform: translate(60px, 100px) scale(1.15); }
	}

	.animated-shapes {
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.shape-item {
		position: absolute;
		background: var(--theme-primary, #6366f1);
		opacity: 0.05;
		animation: shapeFloat 20s ease-in-out infinite;
	}

	.shape-1 {
		width: 100px;
		height: 100px;
		border-radius: 30px;
		top: 10%;
		left: 8%;
		animation-delay: 0s;
	}

	.shape-2 {
		width: 80px;
		height: 80px;
		border-radius: 50%;
		top: 65%;
		right: 12%;
		animation-delay: 5s;
	}

	.shape-3 {
		width: 120px;
		height: 120px;
		border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
		bottom: 20%;
		left: 12%;
		animation-delay: 10s;
	}

	.shape-4 {
		width: 90px;
		height: 90px;
		border-radius: 50%;
		top: 35%;
		right: 20%;
		animation-delay: 15s;
	}

	@keyframes shapeFloat {
		0%, 100% { transform: translate(0, 0) rotate(0deg); }
		25% { transform: translate(30px, -30px) rotate(90deg); }
		50% { transform: translate(-20px, 20px) rotate(180deg); }
		75% { transform: translate(20px, 35px) rotate(270deg); }
	}

	.dots-pattern {
		position: absolute;
		inset: 0;
		background-image: radial-gradient(circle, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
		background-size: 40px 40px;
		opacity: 0.3;
	}

	.ultra-projects-section > .container {
		position: relative;
		z-index: 1;
	}

	/* ============================================
	   SECTION HEADER
	   ============================================ */
	.ultra-projects-header {
		text-align: center;
		margin-bottom: 90px;
		animation: fadeInDown 0.8s ease-out;
	}

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

	.header-badge-container {
		margin-bottom: 30px;
	}

	.projects-badge {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		padding: 14px 36px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 50px;
		font-size: 14px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 2px;
		box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
		animation: badgeFloat 3s ease-in-out infinite;
		border: 2px solid rgba(255, 255, 255, 0.3);
	}

	@keyframes badgeFloat {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(-10px); }
	}

	.projects-badge i {
		font-size: 18px;
		animation: rocketLaunch 3s ease-in-out infinite;
	}

	@keyframes rocketLaunch {
		0%, 100% { transform: translateY(0) rotate(0deg); }
		25% { transform: translateY(-5px) rotate(-10deg); }
		75% { transform: translateY(-5px) rotate(10deg); }
	}

	.projects-main-title {
		font-size: 36px;
		font-weight: 900;
		color: #1a1a1a;
		margin: 0 0 20px 0;
		line-height: 1.2;
		letter-spacing: -2px;
		position: relative;
		display: inline-block;
	}

	.title-effect {
		position: relative;
		height: 8px;
		margin-top: 15px;
	}

	.effect-line {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 130px;
		height: 5px;
		background: linear-gradient(90deg, transparent, var(--theme-primary, #6366f1), transparent);
		border-radius: 10px;
		animation: lineExpand 2s ease-in-out infinite;
	}

	@keyframes lineExpand {
		0%, 100% { width: 130px; opacity: 1; }
		50% { width: 190px; opacity: 0.8; }
	}

	.effect-circle {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 14px;
		height: 14px;
		background: var(--theme-primary, #6366f1);
		border-radius: 50%;
		box-shadow: 0 0 25px var(--theme-primary, #6366f1);
		animation: circlePulse 2s ease-in-out infinite;
	}

	@keyframes circlePulse {
		0%, 100% { transform: translate(-50%, -50%) scale(1); }
		50% { transform: translate(-50%, -50%) scale(1.6); }
	}

	.projects-description {
		font-size: 19px;
		color: #666;
		margin: 25px 0 35px 0;
		font-weight: 600;
		letter-spacing: 0.3px;
	}

	.header-separator {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
		margin-top: 35px;
	}

	.separator-line {
		width: 130px;
		height: 2px;
		background: linear-gradient(90deg, transparent, var(--theme-primary, #6366f1), transparent);
		border-radius: 10px;
		animation: separatorGlow 3s ease-in-out infinite;
	}

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

	.separator-icon {
		width: 48px;
		height: 48px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 18px;
		box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
		animation: iconSpin 6s linear infinite;
	}

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

	/* ============================================
	   PROJECTS GRID
	   ============================================ */
	.ultra-projects-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
		margin-bottom: 90px;
	}

	.project-grid-item {
		animation: fadeInUp 0.6s ease-out forwards;
		opacity: 0;
	}

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

	/* ============================================
	   PROJECT CARD
	   ============================================ */
	.ultra-project-card {
		background: white;
		border-radius: 32px;
		overflow: hidden;
		border: 2px solid #e8e8e8;
		transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
		box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
		position: relative;
		transform-style: preserve-3d;
		height: 100%;
		display: flex;
		flex-direction: column;
	}

	.ultra-project-card::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, transparent 100%);
		opacity: 0;
		transition: opacity 0.5s ease;
		pointer-events: none;
		z-index: 1;
	}

	.ultra-project-card:hover {
		border-color: var(--theme-primary, #6366f1);
		box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
		transform: translateY(-15px) scale(1.02);
	}

	.ultra-project-card:hover::before {
		opacity: 0.03;
	}

	.card-glow-border {
		position: absolute;
		inset: -3px;
		border-radius: 32px;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1), transparent);
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: -1;
		pointer-events: none;
		filter: blur(12px);
	}

	.ultra-project-card:hover .card-glow-border {
		opacity: 0.7;
	}

	/* Image Wrapper */
	.project-image-wrapper {
		position: relative;
		width: 100%;
		height: 300px;
		overflow: hidden;
		background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
	}

	.image-glow-bg {
		position: absolute;
		inset: -50px;
		background: radial-gradient(circle at center, var(--theme-primary, #6366f1), transparent 70%);
		opacity: 0;
		filter: blur(60px);
		z-index: 0;
		transition: opacity 0.5s ease;
	}

	.ultra-project-card:hover .image-glow-bg {
		opacity: 0.6;
	}

	.project-image-link {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 1;
	}

	.project-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.ultra-project-card:hover .project-image {
		transform: scale(1.15) rotate(2deg);
	}

	.project-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, rgba(0, 0, 0, 0.7) 100%);
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: 2;
	}

	.ultra-project-card:hover .project-overlay {
		opacity: 0.3;
	}

	/* Status Badge */
	.project-status-badge {
		position: absolute;
		top: 20px;
		left: 20px;
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 10px 18px;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		border-radius: 50px;
		color: #10b981;
		font-size: 12px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
		z-index: 4;
		border: 2px solid rgba(255, 255, 255, 0.5);
		animation: badgePop 0.8s ease-out;
	}

	@keyframes badgePop {
		0% { transform: scale(0); opacity: 0; }
		60% { transform: scale(1.15); }
		100% { transform: scale(1); opacity: 1; }
	}

	.project-status-badge i {
		font-size: 14px;
		animation: checkSpin 2s ease-in-out infinite;
	}

	@keyframes checkSpin {
		0%, 100% { transform: rotate(0deg); }
		50% { transform: rotate(15deg); }
	}

	/* Hover Effect */
	.project-hover-effect {
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.9);
		backdrop-filter: blur(15px);
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: 3;
	}

	.ultra-project-card:hover .project-hover-effect {
		opacity: 1;
	}

	.hover-content {
		text-align: center;
		transform: translateY(40px);
		transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.ultra-project-card:hover .hover-content {
		transform: translateY(0);
	}

	.hover-icon-circle {
		width: 80px;
		height: 80px;
		background: var(--theme-primary, #6366f1);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 28px;
		margin: 0 auto 20px;
		box-shadow: 0 20px 50px rgba(99, 102, 241, 0.6);
		animation: iconBounce 2s ease-in-out infinite;
	}

	@keyframes iconBounce {
		0%, 100% { transform: scale(1); }
		50% { transform: scale(1.15); }
	}

	.hover-text {
		display: block;
		color: white;
		font-size: 16px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	/* Corner Decorations */
	.corner-deco {
		position: absolute;
		width: 45px;
		height: 45px;
		border: 3px solid var(--theme-primary, #6366f1);
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: 4;
	}

	.top-left {
		top: 18px;
		left: 18px;
		border-right: none;
		border-bottom: none;
		border-radius: 10px 0 0 0;
	}

	.bottom-right {
		bottom: 18px;
		right: 18px;
		border-left: none;
		border-top: none;
		border-radius: 0 0 10px 0;
	}

	.ultra-project-card:hover .corner-deco {
		opacity: 1;
	}

	/* Content Wrapper */
	.project-content-wrapper {
		padding: 28px;
		display: flex;
		flex-direction: column;
		gap: 14px;
		position: relative;
		z-index: 2;
		flex: 1;
	}

	.project-category {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 8px 16px;
		background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
		color: var(--theme-primary, #6366f1);
		border-radius: 50px;
		font-size: 11px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		width: fit-content;
		border: 1px solid #e8e8e8;
	}

	.project-title {
		font-size: 20px;
		font-weight: 800;
		margin: 0;
		line-height: 1.3;
		min-height: 52px;
	}

	.project-title a {
		color: #1a1a1a;
		text-decoration: none;
		transition: color 0.3s ease;
	}

	.project-title a:hover {
		color: var(--theme-primary, #6366f1);
	}

	.ultra-project-card:hover .project-title a {
		color: var(--theme-primary, #6366f1);
	}

	/* Action Button */
	.project-action {
		margin-top: auto;
	}

	.btn-view-project {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		padding: 14px 28px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		text-decoration: none;
		border-radius: 14px;
		font-size: 14px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		position: relative;
		overflow: hidden;
		width: 100%;
		justify-content: center;
	}

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

	.btn-view-project:hover::before {
		width: 400px;
		height: 400px;
	}

	.btn-view-project:hover {
		gap: 16px;
		transform: scale(1.05);
		box-shadow: 0 15px 45px rgba(99, 102, 241, 0.5);
		color: white;
	}

	.btn-view-project .btn-text,
	.btn-view-project .btn-arrow {
		position: relative;
		z-index: 1;
	}

	/* ============================================
	   VIEW ALL BUTTON
	   ============================================ */
	.projects-cta {
		text-align: center;
		animation: fadeInUp 0.8s ease-out;
	}

	.btn-view-all-projects {
		display: inline-flex;
		align-items: center;
		gap: 18px;
		padding: 22px 60px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		text-decoration: none;
		border-radius: 20px;
		font-weight: 900;
		font-size: 17px;
		box-shadow: 0 18px 50px rgba(99, 102, 241, 0.4);
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-transform: uppercase;
		letter-spacing: 0.5px;
		border: 3px solid transparent;
		position: relative;
		overflow: hidden;
	}

	.btn-glow {
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
		transition: left 0.6s ease;
	}

	.btn-view-all-projects:hover .btn-glow {
		left: 100%;
	}

	.btn-view-all-projects:hover {
		gap: 22px;
		transform: translateY(-10px) scale(1.05);
		box-shadow: 0 25px 70px rgba(99, 102, 241, 0.5);
		border-color: rgba(255, 255, 255, 0.3);
		color: white;
	}

	.btn-view-all-projects .btn-label,
	.btn-view-all-projects i {
		position: relative;
		z-index: 1;
	}

	/* ============================================
	   RESPONSIVE DESIGN
	   ============================================ */
	@media (max-width: 1200px) {
		.ultra-projects-section {
			padding: 100px 0;
		}

		.projects-main-title {
			font-size: 50px;
		}

		.ultra-projects-grid {
			grid-template-columns: repeat(3, 1fr);
			gap: 35px;
		}

		.project-image-wrapper {
			height: 280px;
		}
	}

	@media (max-width: 992px) {
		.ultra-projects-section {
			padding: 80px 0;
		}

		.ultra-projects-header {
			margin-bottom: 70px;
		}

		.projects-main-title {
			font-size: 44px;
		}

		.ultra-projects-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 30px;
		}

		.project-image-wrapper {
			height: 260px;
		}

		.project-title {
			font-size: 18px;
			min-height: 48px;
		}
	}

	@media (max-width: 768px) {
		.ultra-projects-section {
			padding: 60px 0;
		}

		.deco-blob,
		.animated-shapes,
		.dots-pattern {
			display: none;
		}

		.projects-badge {
			padding: 12px 28px;
			font-size: 12px;
		}

		.projects-main-title {
			font-size: 36px;
			letter-spacing: -1px;
		}

		.projects-description {
			font-size: 16px;
		}

		.ultra-projects-grid {
			grid-template-columns: 1fr;
			gap: 25px;
			margin-bottom: 70px;
		}

		.ultra-project-card {
			border-radius: 24px;
		}

		.project-image-wrapper {
			height: 280px;
		}

		.project-content-wrapper {
			padding: 24px;
		}

		.project-title {
			font-size: 19px;
			min-height: auto;
		}

		.btn-view-project {
			padding: 14px 24px;
			font-size: 13px;
		}

		.btn-view-all-projects {
			padding: 18px 45px;
			font-size: 15px;
		}
	}

	@media (max-width: 576px) {
		.ultra-projects-section {
			padding: 50px 0;
		}

		.projects-badge {
			font-size: 11px;
			padding: 10px 22px;
		}

		.projects-main-title {
			font-size: 28px;
		}

		.projects-description {
			font-size: 15px;
		}

		.separator-line {
			width: 90px;
		}

		.separator-icon {
			width: 42px;
			height: 42px;
			font-size: 16px;
		}

		.project-image-wrapper {
			height: 240px;
		}

		.project-status-badge {
			top: 15px;
			left: 15px;
			font-size: 11px;
			padding: 8px 14px;
		}

		.project-content-wrapper {
			padding: 20px;
		}

		.project-category {
			font-size: 10px;
			padding: 6px 14px;
		}

		.project-title {
			font-size: 18px;
		}

		.btn-view-project {
			padding: 13px 20px;
			font-size: 12px;
		}

		.btn-view-all-projects {
			padding: 16px 35px;
			font-size: 14px;
			width: 100%;
			max-width: 340px;
		}
	}




        /* Ana renk değişkeni - Header'dan otomatik alınır */
        /* :root { --theme-primary: #6366f1; } Bu satırı silmeyin, header'ınız zaten tanımlıyor */

        /* Component Styles */
        .circular-stats-section {
            padding: 80px 20px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
            position: relative;
            overflow: hidden;
        }

        /* Gradient mesh background */
        .gradient-mesh {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, var(--theme-primary, #6366f1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, var(--theme-primary, #6366f1) 0%, transparent 40%),
                radial-gradient(circle at 40% 80%, var(--theme-primary, #6366f1) 0%, transparent 40%);
            opacity: 0.08;
            filter: blur(60px);
            animation: meshMove 20s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes meshMove {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.05); }
            66% { transform: translate(-30px, 30px) scale(0.95); }
        }

        .stars-container {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
            animation: starTwinkle 3s ease-in-out infinite;
        }

        @keyframes starTwinkle {
            0%, 100% { opacity: 0.2; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
        }

        .mouse-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent 70%);
            opacity: 0;
            filter: blur(100px);
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 0;
            transform: translate(-50%, -50%);
            mix-blend-mode: screen;
        }

        .wave-effect {
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            pointer-events: none;
            opacity: 0.02;
        }

        .wave {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 40%;
            background: var(--theme-primary, #6366f1);
            animation: waveRotate 30s linear infinite;
        }

        .wave:nth-child(1) {
            animation-duration: 25s;
            opacity: 0.5;
        }

        .wave:nth-child(2) {
            animation-duration: 35s;
            animation-direction: reverse;
            opacity: 0.3;
        }

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

        .background-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.08;
            pointer-events: none;
            animation: orbFloat 20s ease-in-out infinite;
            mix-blend-mode: screen;
        }

        .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
            top: -10%;
            left: -15%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
            top: 40%;
            right: -15%;
            animation-delay: 7s;
        }

        .orb-3 {
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
            bottom: -10%;
            left: 25%;
            animation-delay: 14s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(60px, -60px) scale(1.15); }
            50% { transform: translate(-40px, 40px) scale(0.85); }
            75% { transform: translate(40px, 60px) scale(1.1); }
        }

        .animated-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(var(--theme-primary, #6366f1) 1px, transparent 1px),
                linear-gradient(90deg, var(--theme-primary, #6366f1) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.05;
            animation: gridSlide 40s linear infinite;
            pointer-events: none;
            mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
        }

        @keyframes gridSlide {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        .dot-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, var(--theme-primary, #6366f1) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.04;
            animation: dotMove 50s linear infinite;
            pointer-events: none;
        }

        @keyframes dotMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(30px, 30px); }
        }

        .light-beam {
            position: absolute;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, var(--theme-primary, #6366f1), transparent);
            opacity: 0.1;
            animation: beamMove 8s ease-in-out infinite;
            pointer-events: none;
            filter: blur(2px);
        }

        .light-beam:nth-child(1) {
            left: 20%;
            animation-delay: 0s;
        }

        .light-beam:nth-child(2) {
            left: 50%;
            animation-delay: 2s;
        }

        .light-beam:nth-child(3) {
            left: 80%;
            animation-delay: 4s;
        }

        @keyframes beamMove {
            0%, 100% { transform: translateY(-100%); opacity: 0; }
            50% { transform: translateY(0); opacity: 0.15; }
        }

        .circular-stats-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .circular-stats-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .circular-stats-header h2 {
            font-size: 3em;
            font-weight: 900;
            color: var(--theme-primary, #6366f1);
            margin-bottom: 10px;
            letter-spacing: -1px;
        }

        .circular-stats-header p {
            font-size: 1.1em;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* CRITICAL: Grid Layout - Mobile First Approach */
        .circular-stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 10px;
            width: 100%;
        }

        /* Desktop only */
        @media (min-width: 1201px) {
            .circular-stats-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 35px;
                padding: 20px;
            }
        }

        .circular-stat-item {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: transform 0.4s ease;
        }

        .circular-stat-item:hover {
            transform: translateY(-15px) scale(1.05);
        }

        .circle-wrap {
            position: relative;
            width: 150px;
            height: 150px;
            margin-bottom: 20px;
        }

        @media (min-width: 768px) {
            .circle-wrap {
                width: 180px;
                height: 180px;
            }
        }

        @media (min-width: 1201px) {
            .circle-wrap {
                width: 220px;
                height: 220px;
                margin-bottom: 25px;
            }
        }

        .circle-glow-effect {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 170px;
            height: 170px;
            border-radius: 50%;
            background: var(--theme-primary, #6366f1);
            filter: blur(50px);
            opacity: 0.2;
            animation: circleGlowPulse 3s ease-in-out infinite;
            z-index: -1;
        }

        @media (min-width: 768px) {
            .circle-glow-effect {
                width: 200px;
                height: 200px;
            }
        }

        @media (min-width: 1201px) {
            .circle-glow-effect {
                width: 250px;
                height: 250px;
            }
        }

        @keyframes circleGlowPulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(0.95);
                opacity: 0.2;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.3;
            }
        }

        .circle-svg {
            transform: rotate(-90deg);
            width: 150px;
            height: 150px;
        }

        @media (min-width: 768px) {
            .circle-svg {
                width: 180px;
                height: 180px;
            }
        }

        @media (min-width: 1201px) {
            .circle-svg {
                width: 220px;
                height: 220px;
            }
        }

        .circle-bg {
            stroke: rgba(255, 255, 255, 0.08);
            stroke-width: 12;
            fill: none;
        }

        @media (min-width: 1201px) {
            .circle-bg {
                stroke-width: 16;
            }
        }

        .circle-progress {
            stroke: var(--theme-primary, #6366f1);
            stroke-width: 12;
            fill: none;
            stroke-linecap: round;
            transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 0 8px var(--theme-primary, #6366f1));
        }

        @media (min-width: 1201px) {
            .circle-progress {
                stroke-width: 16;
            }
        }

        .circle-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 115px;
            height: 115px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
            backdrop-filter: blur(20px);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 
                inset 0 0 30px rgba(255, 255, 255, 0.05),
                0 10px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
        }

        @media (min-width: 768px) {
            .circle-content {
                width: 140px;
                height: 140px;
            }
        }

        @media (min-width: 1201px) {
            .circle-content {
                width: 170px;
                height: 170px;
            }
        }

        .circular-stat-item:hover .circle-content {
            transform: translate(-50%, -50%) scale(1.05);
            box-shadow: 
                inset 0 0 50px rgba(255, 255, 255, 0.1),
                0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .circle-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            position: relative;
            color: #ffffff;
        }

        @media (min-width: 768px) {
            .circle-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 10px;
            }
        }

        @media (min-width: 1201px) {
            .circle-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 12px;
            }
        }

        .circle-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--theme-primary, #6366f1);
            opacity: 0.2;
            animation: iconPulseAnim 2s ease-in-out infinite;
        }

        @keyframes iconPulseAnim {
            0%, 100% { transform: scale(1); opacity: 0.2; }
            50% { transform: scale(1.2); opacity: 0.1; }
        }

        .circle-icon i {
            font-size: 1.5em;
            z-index: 1;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
            transition: transform 0.6s ease;
        }

        @media (min-width: 768px) {
            .circle-icon i {
                font-size: 1.8em;
            }
        }

        @media (min-width: 1201px) {
            .circle-icon i {
                font-size: 2.1em;
            }
        }

        .circular-stat-item:hover .circle-icon i {
            transform: scale(1.2) rotate(360deg);
        }

        .circle-number {
            font-size: 1.6em;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        @media (min-width: 768px) {
            .circle-number {
                font-size: 1.9em;
            }
        }

        @media (min-width: 1201px) {
            .circle-number {
                font-size: 2.2em;
            }
        }

        .circle-label {
            text-align: center;
        }

        .circle-title {
            font-size: 0.8em;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
            color: #fff;
        }

        @media (min-width: 768px) {
            .circle-title {
                font-size: 0.95em;
            }
        }

        @media (min-width: 1201px) {
            .circle-title {
                font-size: 1.1em;
            }
        }

        .circle-subtitle {
            font-size: 0.7em;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

        @media (min-width: 768px) {
            .circle-subtitle {
                font-size: 0.8em;
            }
        }

        @media (min-width: 1201px) {
            .circle-subtitle {
                font-size: 0.9em;
            }
        }

        .circle-particles {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 150px;
            height: 150px;
            transform: translate(-50%, -50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        @media (min-width: 768px) {
            .circle-particles {
                width: 180px;
                height: 180px;
            }
        }

        @media (min-width: 1201px) {
            .circle-particles {
                width: 220px;
                height: 220px;
            }
        }

        .circular-stat-item:hover .circle-particles {
            opacity: 1;
        }

        .particle-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--theme-primary, #6366f1);
            border-radius: 50%;
            opacity: 0;
            box-shadow: 0 0 10px var(--theme-primary, #6366f1);
            animation: particleFloatAnim 3s ease-in-out infinite;
        }

        @keyframes particleFloatAnim {
            0% { opacity: 0; transform: translate(0, 0) scale(0); }
            50% { opacity: 1; }
            100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(1); }
        }
		/* anasayfa proje son */
		
		
		/* anasayfa su arıtma dünyası*/
		
		/* ============================================
	   ULTRA NEWS SECTION
	   ============================================ */
	.ultra-news-section {
		padding: 140px 0;
		background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
		position: relative;
		overflow: hidden;
	}

	/* Decorative Background */
	.news-decoration {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		overflow: hidden;
		z-index: 0;
	}

	.deco-blob {
		position: absolute;
		border-radius: 50%;
		filter: blur(130px);
		opacity: 0.1;
		animation: blobFloat 30s ease-in-out infinite;
	}

	.blob-1 {
		width: 800px;
		height: 800px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		top: -300px;
		right: -250px;
		animation-delay: 0s;
	}

	.blob-2 {
		width: 650px;
		height: 650px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		bottom: -200px;
		left: -180px;
		animation-delay: 10s;
	}

	.blob-3 {
		width: 750px;
		height: 750px;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent);
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		animation-delay: 20s;
	}

	@keyframes blobFloat {
		0%, 100% { transform: translate(0, 0) scale(1); }
		25% { transform: translate(70px, -70px) scale(1.2); }
		50% { transform: translate(-50px, 50px) scale(0.8); }
		75% { transform: translate(50px, 70px) scale(1.1); }
	}

	.floating-icons {
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.icon-item {
		position: absolute;
		width: 50px;
		height: 50px;
		background: rgba(99, 102, 241, 0.1);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--theme-primary, #6366f1);
		font-size: 20px;
		animation: iconFloat 25s ease-in-out infinite;
	}

	.icon-1 { top: 12%; left: 12%; animation-delay: 0s; }
	.icon-2 { top: 68%; right: 18%; animation-delay: 6s; }
	.icon-3 { bottom: 28%; left: 18%; animation-delay: 12s; }
	.icon-4 { top: 45%; right: 22%; animation-delay: 18s; }

	@keyframes iconFloat {
		0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
		25% { transform: translate(35px, -35px) rotate(90deg); opacity: 0.5; }
		50% { transform: translate(-25px, 25px) rotate(180deg); opacity: 0.4; }
		75% { transform: translate(25px, 35px) rotate(270deg); opacity: 0.45; }
	}

	.wave-pattern {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 200px;
		background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03));
		opacity: 0.5;
	}

	.ultra-news-section > .container {
		position: relative;
		z-index: 1;
	}

	/* ============================================
	   SECTION HEADER
	   ============================================ */
	.ultra-news-header {
		text-align: center;
		margin-bottom: 90px;
		animation: fadeInDown 0.8s ease-out;
	}

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

	.header-badge-wrapper {
		margin-bottom: 30px;
	}

	.news-badge {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		padding: 14px 36px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 50px;
		font-size: 14px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 2px;
		box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
		animation: badgeFloat 3s ease-in-out infinite;
		border: 2px solid rgba(255, 255, 255, 0.3);
	}

	@keyframes badgeFloat {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(-10px); }
	}

	.news-badge i {
		font-size: 18px;
		animation: newspaperFlip 4s ease-in-out infinite;
	}

	@keyframes newspaperFlip {
		0%, 100% { transform: rotateY(0deg); }
		50% { transform: rotateY(180deg); }
	}

	.news-main-title {
		font-size: 36px;
		font-weight: 900;
		color: #1a1a1a;
		margin: 0 0 20px 0;
		line-height: 1.2;
		letter-spacing: -2px;
		position: relative;
		display: inline-block;
	}

	.title-highlight {
		position: relative;
		height: 8px;
		margin-top: 15px;
	}

	.highlight-line {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 140px;
		height: 5px;
		background: linear-gradient(90deg, transparent, var(--theme-primary, #6366f1), transparent);
		border-radius: 10px;
		animation: lineExpand 2s ease-in-out infinite;
	}

	@keyframes lineExpand {
		0%, 100% { width: 140px; opacity: 1; }
		50% { width: 200px; opacity: 0.8; }
	}

	.highlight-dot {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 14px;
		height: 14px;
		background: var(--theme-primary, #6366f1);
		border-radius: 50%;
		box-shadow: 0 0 25px var(--theme-primary, #6366f1);
		animation: dotPulse 2s ease-in-out infinite;
	}

	@keyframes dotPulse {
		0%, 100% { transform: translate(-50%, -50%) scale(1); }
		50% { transform: translate(-50%, -50%) scale(1.6); }
	}

	.news-description {
		font-size: 19px;
		color: #666;
		margin: 25px 0 35px 0;
		font-weight: 600;
		letter-spacing: 0.3px;
	}

	.header-divider {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
		margin-top: 35px;
	}

	.divider-line {
		width: 130px;
		height: 2px;
		background: linear-gradient(90deg, transparent, var(--theme-primary, #6366f1), transparent);
		border-radius: 10px;
		animation: dividerGlow 3s ease-in-out infinite;
	}

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

	.divider-center {
		width: 48px;
		height: 48px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 18px;
		box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
		animation: rssRotate 6s linear infinite;
	}

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

	/* ============================================
	   NEWS GRID
	   ============================================ */
	.ultra-news-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
		margin-bottom: 90px;
	}

	.news-grid-item {
		animation: fadeInUp 0.6s ease-out forwards;
		opacity: 0;
	}

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

	/* ============================================
	   NEWS CARD
	   ============================================ */
	.ultra-news-card {
		background: white;
		border-radius: 28px;
		overflow: hidden;
		border: 2px solid #e8e8e8;
		transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
		position: relative;
		transform-style: preserve-3d;
		height: 100%;
		display: flex;
		flex-direction: column;
	}

	.ultra-news-card::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, transparent 100%);
		opacity: 0;
		transition: opacity 0.5s ease;
		pointer-events: none;
		z-index: 1;
	}

	.ultra-news-card:hover {
		border-color: var(--theme-primary, #6366f1);
		box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
		transform: translateY(-15px) scale(1.02);
	}

	.ultra-news-card:hover::before {
		opacity: 0.03;
	}

	.card-glow-effect {
		position: absolute;
		inset: -3px;
		border-radius: 28px;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1), transparent);
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: -1;
		pointer-events: none;
		filter: blur(10px);
	}

	.ultra-news-card:hover .card-glow-effect {
		opacity: 0.6;
	}

	/* Image Container */
	.news-image-container {
		position: relative;
		width: 100%;
		height: 260px;
		overflow: hidden;
		background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
	}

	.image-glow-effect {
		position: absolute;
		inset: -40px;
		background: radial-gradient(circle at center, var(--theme-primary, #6366f1), transparent 70%);
		opacity: 0;
		filter: blur(50px);
		z-index: 0;
		transition: opacity 0.5s ease;
	}

	.ultra-news-card:hover .image-glow-effect {
		opacity: 0.5;
	}

	.news-image-link {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 1;
	}

	.news-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.ultra-news-card:hover .news-image {
		transform: scale(1.15) rotate(2deg);
	}

	.news-image-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, rgba(0, 0, 0, 0.6) 100%);
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: 2;
	}

	.ultra-news-card:hover .news-image-overlay {
		opacity: 0.25;
	}

	/* News Type Badge */
	.news-type-badge {
		position: absolute;
		top: 20px;
		right: 20px;
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 10px 18px;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		border-radius: 50px;
		color: #ef4444;
		font-size: 12px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
		z-index: 4;
		border: 2px solid rgba(255, 255, 255, 0.5);
		animation: badgeBounce 3s ease-in-out infinite;
	}

	@keyframes badgeBounce {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(-8px); }
	}

	.news-type-badge i {
		font-size: 14px;
		animation: fireFlicker 2s ease-in-out infinite;
	}

	@keyframes fireFlicker {
		0%, 100% { transform: scale(1); opacity: 1; }
		50% { transform: scale(1.2); opacity: 0.8; }
	}

	/* Hover Overlay */
	.news-hover-overlay {
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.88);
		backdrop-filter: blur(12px);
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: 3;
	}

	.ultra-news-card:hover .news-hover-overlay {
		opacity: 1;
	}

	.overlay-wrapper {
		text-align: center;
		transform: translateY(35px);
		transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.ultra-news-card:hover .overlay-wrapper {
		transform: translateY(0);
	}

	.overlay-icon {
		width: 75px;
		height: 75px;
		background: var(--theme-primary, #6366f1);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 26px;
		margin: 0 auto 18px;
		box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
		animation: iconPulse 2s ease-in-out infinite;
	}

	@keyframes iconPulse {
		0%, 100% { transform: scale(1); }
		50% { transform: scale(1.12); }
	}

	.overlay-label {
		display: block;
		color: white;
		font-size: 15px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	/* Corner Accents */
	.corner-accent {
		position: absolute;
		width: 42px;
		height: 42px;
		border: 3px solid var(--theme-primary, #6366f1);
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: 4;
	}

	.top-left {
		top: 18px;
		left: 18px;
		border-right: none;
		border-bottom: none;
		border-radius: 8px 0 0 0;
	}

	.bottom-right {
		bottom: 18px;
		right: 18px;
		border-left: none;
		border-top: none;
		border-radius: 0 0 8px 0;
	}

	.ultra-news-card:hover .corner-accent {
		opacity: 1;
	}

	/* Content Container */
	.news-content-container {
		padding: 26px;
		display: flex;
		flex-direction: column;
		gap: 14px;
		position: relative;
		z-index: 2;
		flex: 1;
	}

	.news-title {
		font-size: 19px;
		font-weight: 800;
		margin: 0;
		line-height: 1.3;
		min-height: 50px;
	}

	.news-title a {
		color: #1a1a1a;
		text-decoration: none;
		transition: color 0.3s ease;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.news-title a:hover {
		color: var(--theme-primary, #6366f1);
	}

	.ultra-news-card:hover .news-title a {
		color: var(--theme-primary, #6366f1);
	}

	/* Meta Info */
	.news-meta-info {
		display: flex;
		align-items: center;
		gap: 16px;
		padding: 14px 0;
		border-top: 2px solid #f5f5f5;
		border-bottom: 2px solid #f5f5f5;
	}

	.meta-item {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 13px;
		color: #666;
		font-weight: 600;
	}

	.meta-item i {
		color: var(--theme-primary, #6366f1);
		font-size: 14px;
	}

	/* Action Footer */
	.news-action-footer {
		display: flex;
		gap: 12px;
		align-items: center;
		margin-top: auto;
	}

	.btn-read-news {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		padding: 14px 24px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		text-decoration: none;
		border-radius: 14px;
		font-size: 14px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
		position: relative;
		overflow: hidden;
	}

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

	.btn-read-news:hover::before {
		width: 300px;
		height: 300px;
	}

	.btn-read-news:hover {
		gap: 14px;
		transform: scale(1.05);
		box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
		color: white;
	}

	.btn-read-news .btn-label,
	.btn-read-news i {
		position: relative;
		z-index: 1;
	}

	.btn-external-link {
		width: 50px;
		height: 50px;
		background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
		border-radius: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--theme-primary, #6366f1);
		text-decoration: none;
		font-size: 16px;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		border: 2px solid #e8e8e8;
		flex-shrink: 0;
	}

	.btn-external-link:hover {
		background: var(--theme-primary, #6366f1);
		color: white;
		transform: scale(1.1) rotate(15deg);
		border-color: var(--theme-primary, #6366f1);
		box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
	}

	/* ============================================
	   VIEW ALL BUTTON
	   ============================================ */
	.news-cta {
		text-align: center;
		animation: fadeInUp 0.8s ease-out;
	}

	.btn-view-all-news {
		display: inline-flex;
		align-items: center;
		gap: 18px;
		padding: 22px 60px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		text-decoration: none;
		border-radius: 20px;
		font-weight: 900;
		font-size: 17px;
		box-shadow: 0 18px 50px rgba(99, 102, 241, 0.4);
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-transform: uppercase;
		letter-spacing: 0.5px;
		border: 3px solid transparent;
		position: relative;
		overflow: hidden;
	}

	.btn-shine {
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
		transition: left 0.6s ease;
	}

	.btn-view-all-news:hover .btn-shine {
		left: 100%;
	}

	.btn-view-all-news:hover {
		gap: 22px;
		transform: translateY(-10px) scale(1.05);
		box-shadow: 0 25px 70px rgba(99, 102, 241, 0.5);
		border-color: rgba(255, 255, 255, 0.3);
		color: white;
	}

	.btn-view-all-news .btn-text,
	.btn-view-all-news i {
		position: relative;
		z-index: 1;
	}

	/* ============================================
	   RESPONSIVE DESIGN
	   ============================================ */
	@media (max-width: 1200px) {
		.ultra-news-section {
			padding: 100px 0;
		}

		.news-main-title {
			font-size: 50px;
		}

		.ultra-news-grid {
			grid-template-columns: repeat(3, 1fr);
			gap: 35px;
		}

		.news-image-container {
			height: 240px;
		}
	}

	@media (max-width: 992px) {
		.ultra-news-section {
			padding: 80px 0;
		}

		.ultra-news-header {
			margin-bottom: 70px;
		}

		.news-main-title {
			font-size: 44px;
		}

		.ultra-news-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 30px;
		}

		.news-image-container {
			height: 240px;
		}

		.news-title {
			font-size: 18px;
			min-height: 48px;
		}
	}

	@media (max-width: 768px) {
		.ultra-news-section {
			padding: 60px 0;
		}

		.deco-blob,
		.floating-icons,
		.wave-pattern {
			display: none;
		}

		.news-badge {
			padding: 12px 28px;
			font-size: 12px;
		}

		.news-main-title {
			font-size: 36px;
			letter-spacing: -1px;
		}

		.news-description {
			font-size: 16px;
		}

		.ultra-news-grid {
			grid-template-columns: 1fr;
			gap: 25px;
			margin-bottom: 70px;
		}

		.ultra-news-card {
			border-radius: 24px;
		}

		.news-image-container {
			height: 260px;
		}

		.news-content-container {
			padding: 24px;
		}

		.news-title {
			font-size: 18px;
			min-height: auto;
		}

		.btn-read-news {
			padding: 13px 20px;
			font-size: 13px;
		}

		.btn-external-link {
			width: 48px;
			height: 48px;
			font-size: 15px;
		}

		.btn-view-all-news {
			padding: 18px 45px;
			font-size: 15px;
		}
	}

	@media (max-width: 576px) {
		.ultra-news-section {
			padding: 50px 0;
		}

		.news-badge {
			font-size: 11px;
			padding: 10px 22px;
		}

		.news-main-title {
			font-size: 28px;
		}

		.news-description {
			font-size: 15px;
		}

		.divider-line {
			width: 90px;
		}

		.divider-center {
			width: 42px;
			height: 42px;
			font-size: 16px;
		}

		.news-image-container {
			height: 220px;
		}

		.news-type-badge {
			top: 15px;
			right: 15px;
			font-size: 11px;
			padding: 8px 14px;
		}

		.news-content-container {
			padding: 20px;
		}

		.news-title {
			font-size: 17px;
		}

		.meta-item {
			font-size: 12px;
		}

		.btn-read-news {
			padding: 12px 18px;
			font-size: 12px;
		}

		.btn-external-link {
			width: 46px;
			height: 46px;
			font-size: 14px;
		}

		.btn-view-all-news {
			padding: 16px 35px;
			font-size: 14px;
			width: 100%;
			max-width: 340px;
		}
	}
	
	/* su arıtma dünyası son*/
	
	
	/* hizmetler baslangıc */
	* {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
	}

	.services-section {
		padding: 120px 0;
		background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
		position: relative;
		overflow: hidden;
	}

	/* Decorative Background */
	.services-decoration {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		overflow: hidden;
	}

	.deco-circle {
		position: absolute;
		border-radius: 50%;
		background: radial-gradient(circle, var(--theme-primary, #6366f1), transparent 70%);
		opacity: 0.08;
		animation: float 20s ease-in-out infinite;
	}

	.deco-1 {
		width: 600px;
		height: 600px;
		top: -200px;
		right: -200px;
		animation-delay: 0s;
	}

	.deco-2 {
		width: 400px;
		height: 400px;
		bottom: -100px;
		left: -100px;
		animation-delay: 7s;
	}

	.deco-3 {
		width: 500px;
		height: 500px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		animation-delay: 14s;
	}

	@keyframes float {
		0%, 100% { transform: translate(0, 0) scale(1); }
		25% { transform: translate(30px, -30px) scale(1.05); }
		50% { transform: translate(-20px, 20px) scale(0.95); }
		75% { transform: translate(20px, 30px) scale(1.02); }
	}

	/* Header */
	.services-header {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 30px;
		margin-bottom: 80px;
		text-align: center;
		animation: fadeInDown 0.8s ease-out;
		position: relative;
		z-index: 1;
	}

	.header-line {
		flex: 1;
		max-width: 300px;
		height: 4px;
		background: linear-gradient(90deg, transparent, var(--theme-primary, #6366f1), transparent);
		border-radius: 10px;
		position: relative;
		overflow: hidden;
	}

	.header-line::after {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
		animation: shimmer 3s infinite;
	}

	@keyframes shimmer {
		0% { left: -100%; }
		100% { left: 100%; }
	}

	.section-title {
		font-size: 52px;
		font-weight: 900;
		color: var(--theme-primary, #6366f1);
		letter-spacing: -2px;
		white-space: nowrap;
		text-transform: uppercase;
		display: flex;
		align-items: center;
		gap: 15px;
		text-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	}

	.section-title i {
		animation: sparkle 2s ease-in-out infinite;
	}

	@keyframes sparkle {
		0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
		50% { transform: rotate(180deg) scale(1.2); opacity: 0.8; }
	}

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

	/* Grid */
	.services-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 35px;
		margin-bottom: 80px;
		position: relative;
		z-index: 1;
	}

	.service-item {
		animation: slideInUp 0.6s ease-out forwards;
		opacity: 0;
	}

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

	/* Service Card */
	.service-card {
		background: #ffffff;
		border-radius: 28px;
		overflow: hidden;
		border: 2px solid #e8e8e8;
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
		display: flex;
		flex-direction: column;
		height: 100%;
		cursor: pointer;
		position: relative;
		transform-style: preserve-3d;
	}

	.service-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, transparent 100%);
		opacity: 0;
		transition: opacity 0.4s ease;
		z-index: 1;
		pointer-events: none;
		border-radius: 28px;
	}

	.service-card:hover {
		border-color: var(--theme-primary, #6366f1);
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
		transform: translateY(-15px) scale(1.02);
	}

	.service-card:hover::before {
		opacity: 0.05;
	}

	/* Image Container */
	.service-image-container {
		position: relative;
		width: 100%;
		height: 280px;
		overflow: hidden;
		background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
	}

	.service-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.service-card:hover .service-image {
		transform: scale(1.15) rotate(3deg);
		filter: brightness(1.1);
	}

	.service-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, rgba(0, 0, 0, 0.5) 100%);
		opacity: 0;
		transition: opacity 0.4s ease;
		z-index: 1;
	}

	.service-card:hover .service-overlay {
		opacity: 0.3;
	}

	.service-badge {
		position: absolute;
		top: 20px;
		right: 20px;
		width: 60px;
		height: 60px;
		background: var(--theme-primary, #6366f1);
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 24px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		z-index: 2;
		animation: pulse 2s ease-in-out infinite;
	}

	@keyframes pulse {
		0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
		50% { transform: scale(1.1); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); }
	}

	/* Content */
	.service-content {
		padding: 32px;
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 14px;
		position: relative;
		z-index: 2;
	}

	.service-category {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 8px 16px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 50px;
		font-size: 12px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		width: fit-content;
		box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
	}

	.service-title {
		font-size: 22px;
		font-weight: 800;
		color: #1a1a1a;
		margin: 0;
		line-height: 1.3;
		transition: color 0.3s ease;
	}

	.service-card:hover .service-title {
		color: var(--theme-primary, #6366f1);
	}

	.service-text {
		font-size: 15px;
		color: #666;
		margin: 0;
		line-height: 1.7;
		flex: 1;
	}

	.service-actions {
		display: flex;
		gap: 12px;
		align-items: center;
		margin-top: 10px;
	}

	.service-btn {
		flex: 1;
		padding: 14px 20px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border: none;
		border-radius: 14px;
		font-weight: 700;
		font-size: 14px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-transform: uppercase;
		letter-spacing: 0.5px;
		box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
		position: relative;
		overflow: hidden;
	}

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

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

	.service-btn:hover {
		gap: 14px;
		transform: scale(1.05);
		box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
	}

	.service-btn span,
	.service-btn i {
		position: relative;
		z-index: 1;
	}

	.service-link {
		width: 50px;
		height: 50px;
		background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
		color: var(--theme-primary, #6366f1);
		border-radius: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 18px;
		text-decoration: none;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		border: 2px solid #e8e8e8;
	}

	.service-link:hover {
		background: var(--theme-primary, #6366f1);
		color: white;
		transform: scale(1.1) rotate(10deg);
		border-color: var(--theme-primary, #6366f1);
		box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
	}

	/* Modal */
	.custom-modal {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.custom-modal.active {
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 1;
	}

	.modal-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.6);
		backdrop-filter: blur(8px);
		cursor: pointer;
	}

	.modal-content-wrapper {
		position: relative;
		z-index: 10000;
		width: 90%;
		max-width: 1100px;
		max-height: 90vh;
		overflow: hidden;
		animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	@keyframes modalSlideIn {
		from {
			opacity: 0;
			transform: scale(0.8) translateY(50px);
		}
		to {
			opacity: 1;
			transform: scale(1) translateY(0);
		}
	}

	.modal-body-custom {
		display: grid;
		grid-template-columns: 45% 55%;
		gap: 0;
		background: white;
		border-radius: 32px;
		overflow: hidden;
		box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
	}

	.modal-left {
		position: relative;
		overflow: hidden;
		background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
	}

	.modal-image-wrapper {
		position: relative;
		width: 100%;
		height: 100%;
		min-height: 550px;
	}

	.modal-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.8s ease;
	}

	.custom-modal.active .modal-image {
		transform: scale(1.05);
	}

	.modal-image-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, var(--theme-primary, #6366f1) 0%, rgba(0, 0, 0, 0.5) 100%);
		opacity: 0.2;
	}

	.modal-label {
		position: absolute;
		bottom: 35px;
		left: 35px;
		background: var(--theme-primary, #6366f1);
		color: white;
		padding: 14px 28px;
		border-radius: 50px;
		font-weight: 700;
		font-size: 15px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		display: flex;
		align-items: center;
		gap: 10px;
		animation: slideInLeft 0.6s ease-out 0.2s backwards;
	}

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

	.modal-right {
		background: white;
		padding: 55px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		position: relative;
		overflow-y: auto;
		max-height: 90vh;
	}

	.modal-right::-webkit-scrollbar {
		width: 8px;
	}

	.modal-right::-webkit-scrollbar-track {
		background: #f1f1f1;
		border-radius: 10px;
	}

	.modal-right::-webkit-scrollbar-thumb {
		background: var(--theme-primary, #6366f1);
		border-radius: 10px;
	}

	.close-modal {
		position: absolute;
		top: 25px;
		right: 25px;
		width: 55px;
		height: 55px;
		background: #f8f9fa;
		border: 2px solid #e8e8e8;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		font-size: 24px;
		color: var(--theme-primary, #6366f1);
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		padding: 0;
	}

	.close-modal:hover {
		background: var(--theme-primary, #6366f1);
		color: white;
		border-color: var(--theme-primary, #6366f1);
		transform: rotate(90deg) scale(1.1);
		box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
	}

	.modal-header-badge {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 10px 20px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		border-radius: 50px;
		font-size: 12px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		margin-bottom: 20px;
		width: fit-content;
		box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
	}

	.modal-content-wrapper-inner {
		flex: 1;
	}

	.modal-main-title {
		font-size: 36px;
		font-weight: 900;
		color: #1a1a1a;
		margin: 0 0 20px 0;
		line-height: 1.2;
		letter-spacing: -1px;
	}

	.modal-divider {
		width: 80px;
		height: 5px;
		background: var(--theme-primary, #6366f1);
		border-radius: 10px;
		margin-bottom: 30px;
		position: relative;
		overflow: hidden;
	}

	.modal-divider::after {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
		animation: shimmer 2s infinite;
	}

	.modal-description {
		font-size: 16px;
		color: #666;
		line-height: 1.9;
		margin-bottom: 35px;
	}

	/* Contact Section */
	.contact-section {
		margin-bottom: 35px;
		padding: 30px;
		background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
		border-radius: 20px;
		border: 2px solid #e8e8e8;
	}

	.contact-title {
		font-size: 16px;
		font-weight: 800;
		color: #1a1a1a;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin-bottom: 20px;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.contact-title i {
		color: var(--theme-primary, #6366f1);
		font-size: 20px;
	}

	.contact-methods {
		display: flex;
		flex-direction: column;
		gap: 14px;
	}

	.contact-item {
		display: flex;
		align-items: center;
		gap: 18px;
		padding: 20px 24px;
		background: white;
		border-radius: 18px;
		text-decoration: none;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		border: 2px solid #e8e8e8;
		cursor: pointer;
		color: inherit;
		position: relative;
		overflow: hidden;
	}

	.contact-item::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		transition: left 0.4s ease;
		z-index: 0;
	}

	.phone-item::before {
		background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
	}

	.whatsapp-item::before {
		background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	}

	.contact-item > * {
		position: relative;
		z-index: 1;
	}

	.contact-item:hover::before {
		left: 0;
	}

	.phone-item:hover {
		border-color: #ff4757;
		color: white;
		box-shadow: 0 12px 35px rgba(255, 71, 87, 0.3);
		transform: translateX(10px);
	}

	.whatsapp-item:hover {
		border-color: #25d366;
		color: white;
		box-shadow: 0 12px 35px rgba(37, 211, 102, 0.3);
		transform: translateX(10px);
	}

	.contact-icon {
		width: 50px;
		height: 50px;
		background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 22px;
		flex-shrink: 0;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		border: 2px solid #e8e8e8;
	}

	.phone-item .contact-icon {
		color: #ff4757;
	}

	.whatsapp-item .contact-icon {
		color: #25d366;
	}

	.contact-item:hover .contact-icon {
		background: white;
		transform: scale(1.15) rotate(-10deg);
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	}

	.contact-info {
		display: flex;
		flex-direction: column;
		gap: 4px;
		flex: 1;
	}

	.contact-label {
		font-size: 12px;
		font-weight: 700;
		color: #999;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		transition: color 0.3s ease;
	}

	.contact-item:hover .contact-label {
		color: rgba(255, 255, 255, 0.8);
	}

	.contact-value {
		font-size: 16px;
		font-weight: 700;
		color: #1a1a1a;
		transition: color 0.3s ease;
	}

	.contact-item:hover .contact-value {
		color: white;
	}

	.contact-arrow {
		font-size: 16px;
		color: #999;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.contact-item:hover .contact-arrow {
		color: white;
		transform: translateX(8px);
	}

	/* Modal Buttons */
	.modal-buttons {
		display: flex;
		gap: 14px;
		flex-wrap: wrap;
	}

	.btn-primary-custom,
	.btn-secondary-custom {
		flex: 1;
		min-width: 160px;
		padding: 16px 28px;
		border-radius: 14px;
		font-weight: 700;
		border: 2px solid;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		text-decoration: none;
		cursor: pointer;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		font-size: 14px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		position: relative;
		overflow: hidden;
	}

	.btn-primary-custom {
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		border-color: var(--theme-primary, #6366f1);
		color: white;
		box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
	}

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

	.btn-primary-custom:hover::before {
		width: 300px;
		height: 300px;
	}

	.btn-primary-custom:hover {
		gap: 16px;
		transform: scale(1.05);
		box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
	}

	.btn-primary-custom span,
	.btn-primary-custom i {
		position: relative;
		z-index: 1;
	}

	.btn-secondary-custom {
		background: white;
		border-color: #e8e8e8;
		color: #1a1a1a;
	}

	.btn-secondary-custom:hover {
		background: #f8f9fa;
		border-color: var(--theme-primary, #6366f1);
		color: var(--theme-primary, #6366f1);
		transform: scale(1.05);
	}

	/* CTA Button */
	.services-cta {
		text-align: center;
		animation: fadeInUp 0.8s ease-out;
		position: relative;
		z-index: 1;
	}

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

	.btn-view-all {
		display: inline-flex;
		align-items: center;
		gap: 14px;
		padding: 20px 50px;
		background: linear-gradient(110deg, var(--theme-primary, #060606) 0%, rgba(6, 6, 6, 0.8) 100%);
		color: white;
		text-decoration: none;
		border-radius: 20px;
		font-weight: 800;
		font-size: 17px;
		box-shadow: 0 15px 45px rgba(99, 102, 241, 0.4);
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-transform: uppercase;
		letter-spacing: 0.5px;
		border: 2px solid transparent;
		position: relative;
		overflow: hidden;
	}

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

	.btn-view-all:hover::before {
		width: 400px;
		height: 400px;
	}

	.btn-view-all:hover {
		gap: 18px;
		transform: translateY(-8px) scale(1.05);
		box-shadow: 0 20px 60px rgba(99, 102, 241, 0.5);
		border-color: rgba(255, 255, 255, 0.3);
		color: white !important;
	}

	.btn-view-all i,
	.btn-view-all span {
		position: relative;
		z-index: 1;
	}

	/* Responsive - Tablet */
	@media (max-width: 1024px) {
		.services-section {
			padding: 90px 0;
		}

		.services-grid {
			grid-template-columns: repeat(4, 1fr);
			gap: 25px;
		}

		.section-title {
			font-size: 42px;
		}

		.service-image-container {
			height: 240px;
		}

		.modal-body-custom {
			grid-template-columns: 40% 60%;
		}

		.modal-right {
			padding: 40px;
		}

		.modal-main-title {
			font-size: 28px;
		}

		.modal-image-wrapper {
			min-height: 480px;
		}
	}

	/* Responsive - Tablet Small */
	@media (max-width: 768px) {
		.services-section {
			padding: 70px 0;
		}

		.services-header {
			gap: 20px;
			margin-bottom: 60px;
		}

		.section-title {
			font-size: 32px;
		}

		.services-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 25px;
			margin-bottom: 60px;
		}

		.service-card {
			border-radius: 20px;
		}

		.service-card:hover {
			transform: translateY(-10px);
		}

		.service-image-container {
			height: 220px;
		}

		.service-content {
			padding: 24px;
		}

		.service-title {
			font-size: 19px;
		}

		.service-badge {
			width: 50px;
			height: 50px;
			font-size: 20px;
		}

		.modal-body-custom {
			grid-template-columns: 1fr;
		}

		.modal-image-wrapper {
			min-height: 350px;
		}

		.modal-right {
			padding: 35px;
		}

		.modal-main-title {
			font-size: 24px;
		}

		.close-modal {
			width: 50px;
			height: 50px;
			font-size: 20px;
		}

		.contact-methods {
			flex-direction: row;
			gap: 12px;
		}

		.contact-item {
			flex: 1;
			flex-direction: column;
			padding: 16px;
			text-align: center;
		}

		.contact-info {
			gap: 2px;
		}

		.contact-label {
			font-size: 11px;
		}

		.contact-value {
			font-size: 14px;
		}

		.contact-arrow {
			display: none;
		}

		.modal-buttons {
			flex-direction: column;
		}

		.btn-primary-custom,
		.btn-secondary-custom {
			width: 100%;
			min-width: unset;
		}

		.btn-view-all {
			padding: 16px 40px;
			font-size: 15px;
		}
	}

	/* Responsive - Mobile */
	@media (max-width: 576px) {
		.services-section {
			padding: 50px 0;
		}

		.services-header {
			flex-direction: column;
			gap: 12px;
			margin-bottom: 45px;
		}

		.header-line {
			width: 80%;
			max-width: unset;
		}

		.section-title {
			font-size: 26px;
			letter-spacing: -1px;
		}

		.section-title i {
			font-size: 22px;
		}

		.services-grid {
			grid-template-columns: 1fr;
			gap: 20px;
			margin-bottom: 45px;
		}

		.service-card {
			border-radius: 18px;
		}

		.service-image-container {
			height: 200px;
		}

		.service-content {
			padding: 20px;
		}

		.service-category {
			font-size: 11px;
			padding: 6px 14px;
		}

		.service-title {
			font-size: 18px;
		}

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

		.service-btn {
			padding: 12px 16px;
			font-size: 13px;
		}

		.service-link {
			width: 46px;
			height: 46px;
			font-size: 16px;
		}

		.service-badge {
			width: 45px;
			height: 45px;
			font-size: 18px;
			top: 15px;
			right: 15px;
		}

		.modal-content-wrapper {
			width: 95%;
			max-height: 95vh;
		}

		.modal-body-custom {
			border-radius: 24px;
		}

		.modal-image-wrapper {
			min-height: 280px;
		}

		.modal-right {
			padding: 25px;
		}

		.modal-header-badge {
			font-size: 11px;
			padding: 8px 16px;
		}

		.modal-main-title {
			font-size: 22px;
		}

		.modal-description {
			font-size: 15px;
		}

		.close-modal {
			top: 18px;
			right: 18px;
			width: 45px;
			height: 45px;
			font-size: 18px;
		}

		.modal-label {
			bottom: 20px;
			left: 20px;
			padding: 10px 20px;
			font-size: 13px;
		}

		.contact-section {
			padding: 20px;
		}

		.contact-title {
			font-size: 14px;
		}

		.contact-methods {
			flex-direction: column;
		}

		.contact-item {
			flex-direction: row;
			text-align: left;
		}

		.contact-arrow {
			display: block;
		}

		.services-cta {
			margin-top: 35px;
		}

		.btn-view-all {
			padding: 15px 35px;
			font-size: 14px;
			gap: 12px;
		}

		.deco-circle {
			display: none;
		}
	}
	/* hizmetler baslangıc son son*/
	/* foto galeri detay */
	/* --- Gallery Container --- */
.gallery-vertical-ortimax { 
    display: flex; 
    gap: 15px; 
    max-height: 80vh; 
    overflow: hidden; 
    margin-top: 30px; /* Galeriyi aşağı çekmek için margin eklendi */
}
.main-photo-container-ortimax { 
    flex: 1; 
    min-width: 300px; 
    position: relative; 
    overflow: hidden; 
    max-height: 70vh; 
}

/* --- Arka plan blur efekti --- */
.main-photo-bg-ortimax {
    position: absolute; 
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.7);
    border-radius: 1rem; 
    z-index:0;
}

/* Ana fotoğraf */
.main-photo-ortimax { 
    width: 100%; 
    border-radius: 1rem; 
    box-shadow: 0 12px 25px rgba(0,0,0,0.3); 
    transition: transform 0.5s ease, opacity 0.5s ease; 
    position: relative; 
    z-index:2; 
    max-height: 65vh; 
    object-fit: contain; 
}
.slide-wrapper-ortimax { 
    position: relative; 
    display: inline-block; 
    width: 100%; 
}
.slide-caption-ortimax { 
    position: absolute; 
    bottom: 15px; 
    left: 50%; 
    transform: translateX(-50%); 
    color: #fff; 
    background: rgba(0,0,0,0.35); 
    padding: 5px 15px; 
    border-radius: 0.5rem; 
    font-weight: 500; 
    font-size: 0.95rem; 
    z-index:2; 
}

/* --- Dikey Küçük Resimler --- */
.thumb-vertical-container-ortimax {
    width: 100px;
    max-height: 500px;
    overflow-y: auto; 
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.thumb-slider-vertical-ortimax .swiper-slide-thumb-ortimax {
    height: auto;
    flex-shrink: 0;
}
.gallery-thumb-ortimax { 
    width: 100%; 
    height: 80px; 
    object-fit: cover; 
    cursor: pointer; 
    border: 2px solid #fff; 
    border-radius: 0.5rem; 
    transition: all 0.3s ease; 
}
.gallery-thumb-ortimax:hover { 
    border-color: #0d6efd; 
    transform: scale(1.05); 
}
.thumb-caption-ortimax { 
    position: absolute; 
    bottom: -25px; 
    left: 50%; 
    transform: translateX(-50%); 
    font-size: 0.75rem; 
    color: #0d6efd; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
    white-space: nowrap; 
}
.swiper-slide-thumb-ortimax:hover .thumb-caption-ortimax { 
    opacity: 1; 
}

/* --- Swiper Arrows --- */
.swiper-button-next-ortimax, .swiper-button-prev-ortimax { 
    color: #0d6efd; 
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .gallery-vertical-ortimax { 
        flex-direction: column; 
        align-items: center; 
        max-height: none; 
        height: auto; 
        margin-top: 50px; /* Mobilde daha fazla aşağı çekmek için */
        padding-top: 20px; /* Üstten boşluk ekledik */
    }
    .main-photo-container-ortimax { 
        width: 100%; 
        margin-bottom: 15px; 
        max-height: 50vh; 
        height: 50vh; 
    }
    .main-photo-ortimax {
        max-height: 45vh;
        height: 45vh;
    }
    .thumb-vertical-container-ortimax {
        width: 100%;
        max-height: 100px; /* Daha düşük yükseklik */
        height: 100px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        overflow: hidden; 
        margin-top: 10px;
    }
    .thumb-slider-vertical-ortimax .swiper-slide-thumb-ortimax {
        width: 30%;
        margin: 5px;
    }
}
@media (max-width: 576px) {
    .gallery-vertical-ortimax {
        margin-top: 60px; /* Daha küçük ekranlarda daha fazla aşağı */
        padding-top: 30px;
    }
    .main-photo-container-ortimax {
        max-height: 40vh; 
        height: 40vh; 
    }
    .main-photo-ortimax {
        max-height: 35vh;
        height: 35vh;
    }
    .thumb-vertical-container-ortimax {
        max-height: 80px; /* Daha düşük yükseklik */
        height: 80px;
    }
    .thumb-slider-vertical-ortimax .swiper-slide-thumb-ortimax {
        width: 45%;
        margin: 5px;
    }
}
/* foto detay son*/
		