/* ==========================================================================
   iSelect Template Styles
   ========================================================================== */

/* Poppins Font - Tüm Sayfa */
.iselect-wrapper,
.iselect-wrapper * {
	font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
}

.iselect-wrapper {
	background-color: #fff;
	min-height: 100vh;
	position: relative;
}

/* Container */
.iselect-container {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ==========================================================================
   Section 1: Hero
   ========================================================================== */
.iselect-hero {
	background: #ffffff;
	padding: 40px 0 60px;
}

.iselect-hero-inner {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Logo Alanı */
.iselect-hero-logos {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 30px;
}

.iselect-partner-logo img {
	max-height: 80px;
	width: auto;
}

.iselect-apple-partner img {
	max-height: 60px;
	width: auto;
}

/* Hero Görsel */
.iselect-hero-image {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}

.iselect-hero-image img {
	max-width: 700px;
	width: 100%;
	height: auto;
}

/* Hero İçerik */
.iselect-hero-content {
	text-align: center;
}

.iselect-badge {
	display: inline-block;
	background-color: #AB162B;
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 24px;
}

.iselect-hero-title {
	font-size: 42px;
	font-weight: 700;
	color: #1D1D1F;
	margin: 0 0 24px 0;
	line-height: 1.2;
}

.iselect-hero-description {
	font-size: 18px;
	color: #1D1D1F;
	line-height: 1.6;
	margin-bottom: 32px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.iselect-hero-description p {
	margin: 0 0 16px 0;
}

.iselect-hero-description p:last-child {
	margin-bottom: 0;
}

.iselect-cta-button {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	background-color: #0071E3;
	padding: 14px 28px;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.iselect-cta-button:hover {
	background-color: #0077ED;
	color: #ffffff;
}

/* ==========================================================================
   Section 2: Ürün Kategorileri
   ========================================================================== */
.iselect-categories {
	background-color: #ffffff;
	padding: 80px 0;
}

.iselect-section-title {
	font-size: 32px;
	font-weight: 700;
	color: #1D1D1F;
	text-align: center;
	margin: 0 0 48px 0;
	line-height: 1.3;
}

.iselect-section-title .text-gray {
	color: #6E6E73;
}

.iselect-categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.iselect-category-card {
	display: block;
	background: #F5F5F7;
	border-radius: 20px;
	padding: 32px 24px;
	text-align: center;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iselect-category-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.iselect-category-title {
	font-size: 24px;
	font-weight: 600;
	color: #1D1D1F;
	margin: 0 0 24px 0;
}

.iselect-category-image {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 180px;
}

.iselect-category-image img {
	max-width: 100%;
	max-height: 180px;
	object-fit: contain;
}

/* ==========================================================================
   Section 3: Adımlar
   ========================================================================== */
.iselect-steps {
	background-color: #ffffff;
	padding: 80px 0;
}

.iselect-section-subtitle {
	font-size: 32px;
	font-weight: 700;
	color: #6E6E73;
	text-align: center;
	margin: 0 0 60px 0;
}

.iselect-steps-flow {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	position: relative;
}

.iselect-step-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	max-width: 180px;
}

.iselect-step-number {
	width: 56px;
	height: 56px;
	background-color: #0071E3;
	color: #ffffff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	position: relative;
	z-index: 2;
}

.iselect-step-connector {
	position: absolute;
	top: 28px;
	left: calc(50% + 35px);
	width: calc(100% - 20px);
	height: 2px;
	background-image: linear-gradient(to right, #1D1D1F 6px, transparent 6px);
	background-size: 12px 2px;
	z-index: 1;
}

.iselect-step-item:last-child .iselect-step-connector {
	display: none;
}

.iselect-step-card {
	background: #F5F5F7;
	border: 1px solid #E5E5E7;
	border-radius: 16px;
	padding: 20px 16px;
	text-align: center;
	width: 100%;
	min-height: 160px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
}

.iselect-step-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.iselect-step-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.iselect-step-text {
	font-size: 13px;
	color: #1D1D1F;
	line-height: 1.5;
	margin: 0;
}

.iselect-step-text strong {
	color: #0071E3;
	font-weight: 600;
}

/* ==========================================================================
   Section 4: Ayrıcalıklar
   ========================================================================== */
.iselect-privileges {
	background-color: #F5F5F7;
	padding: 80px 0;
}

.iselect-section-description {
	font-size: 18px;
	color: #6E6E73;
	text-align: center;
	margin: -32px 0 48px 0;
}

.iselect-privileges-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.iselect-privilege-card {
	background: #F5F5F7;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	min-height: 340px;
  	min-width: 280px;
	overflow: visible;
	position: relative;
}

.iselect-privilege-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.iselect-privilege-title {
	font-size: 16px;
	font-weight: 700;
	color: #000000;
	margin: 0 0 8px 0;
	line-height: 1.3;
}

.iselect-privilege-text {
	font-size: 13px;
	color: #000000;
	line-height: 1.5;
	margin: 0;
}

.iselect-privilege-image {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.iselect-privilege-image img {
	max-height: 140px;
	width: auto;
	object-fit: contain;
	border-radius: 12px;
}

/* 2. kart (Hoş Geldin Hediyesi) - full görsel */
.iselect-privilege-card:nth-child(2) .iselect-privilege-image img {
	max-height: 180px;
}

/* 5. kart (PT Yetkili Servis) - özel görsel */
.iselect-privilege-card:nth-child(5) .iselect-privilege-image img {
	max-height: 120px;
}

/* ==========================================================================
   Section 5: İletişim
   ========================================================================== */
.iselect-contact {
	background-color: #F5F5F7;
	padding-bottom:60px;
	text-align: center;
}

.iselect-contact-title {
	font-size: 24px;
	font-weight: 600;
	color: #155EC9;
	margin: 0 0 24px 0;
	line-height: 1.4;
}

.iselect-contact-info {
	font-size: 16px;
	color: #1D1D1F;
}

.iselect-contact-info p {
	margin: 0 0 8px 0;
}

.iselect-contact-info strong {
	font-weight: 600;
}

/* ==========================================================================
   Section 6: Özel Fırsatlar
   ========================================================================== */
.iselect-offers {
	background: #ffffff;
	padding: 80px 0;
}

.iselect-offers-title {
	font-size: 36px;
	font-weight: 700;
	color: #AB162B;
	text-align: center;
	margin: 0 0 48px 0;
}

.iselect-offers-banners {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: nowrap;
}

.iselect-offers-banners .iselect-offer-link {
	flex: 0 1 auto;
	max-width: 48%;
}

.iselect-offer-link {
	display: block;
	transition: transform 0.3s ease;
}

.iselect-offer-link:hover {
	transform: scale(1.02);
}

.iselect-offer-banner {
	max-width: 100%;
	max-height: 500px;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.iselect-offer-text {
	background: #ffffff;
	border-radius: 20px;
	padding: 32px;
	text-align: center;
	max-width: 400px;
}

.iselect-offer-text h3 {
	font-size: 20px;
	font-weight: 600;
	color: #1D1D1F;
	margin: 0 0 12px 0;
}

.iselect-offer-text p {
	font-size: 14px;
	color: #6E6E73;
	margin: 0;
}

.iselect-offer-text a {
	text-decoration: none;
	color: inherit;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
	.iselect-privileges-grid {
	grid-template-columns: repeat(2, 1fr);
}
	.iselect-hero-title {
		font-size: 32px;
	}

	.iselect-categories-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.iselect-steps-flow {
		flex-wrap: wrap;
		justify-content: center;
		gap: 24px;
	}

	.iselect-step-item {
		flex: 0 0 calc(33.333% - 16px);
		max-width: none;
	}

	.iselect-step-connector {
		display: none;
	}

	.iselect-privileges-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.iselect-privilege-card {
		min-height: 280px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.iselect-hero {
		padding: 24px 0 40px;
	}

	.iselect-hero-logos {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.iselect-partner-logo img {
		max-height: 60px;
	}

	.iselect-apple-partner img {
		max-height: 40px;
	}

	.iselect-hero-image img {
		max-width: 100%;
	}

	.iselect-badge {
		font-size: 14px;
		padding: 10px 20px;
	}

	.iselect-hero-title {
		font-size: 24px;
	}

	.iselect-hero-description {
		font-size: 15px;
	}

	.iselect-cta-button {
		font-size: 14px;
		padding: 12px 20px;
	}

	.iselect-categories,
	.iselect-steps,
	.iselect-privileges,
	.iselect-offers {
		padding: 48px 0;
	}

	.iselect-section-title {
		font-size: 24px;
		margin-bottom: 32px;
	}

	.iselect-section-subtitle {
		font-size: 20px;
		margin-bottom: 40px;
	}

	.iselect-category-card {
		padding: 20px 16px;
	}

	.iselect-category-title {
		font-size: 18px;
		margin-bottom: 16px;
	}

	.iselect-category-image {
		min-height: 120px;
	}

	.iselect-category-image img {
		max-height: 120px;
	}

	.iselect-step-item {
		flex: 0 0 100%;
	}

	.iselect-step-card {
		min-height: auto;
		padding: 16px;
	}

	.iselect-privileges-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.iselect-privilege-card {
		min-height: 240px;
		padding: 16px;
	}


	.iselect-privilege-text {
		font-size: 11px;
	}

	.iselect-privilege-image img {
		max-height: 100px;
	}

	.iselect-contact {
		padding: 40px 0;
	}

	.iselect-contact-title {
		font-size: 18px;
	}

	.iselect-offers-title {
		font-size: 24px;
	}

	.iselect-offers-banners {
		flex-direction: column;
		align-items: center;
	}

	.iselect-offer-banner {
		max-height: 400px;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.iselect-container {
		padding: 0 16px;
	}
	.iselect-privileges-grid {
	grid-template-columns: repeat(1, 1fr);
}
	.iselect-hero-title {
		font-size: 20px;
	}

	.iselect-hero-description {
		font-size: 14px;
	}

	.iselect-section-title {
		font-size: 20px;
	}

	.iselect-categories-grid {
		grid-template-columns: 1fr;
	}

	.iselect-step-number {
		width: 48px;
		height: 48px;
		font-size: 20px;
	}
}

/* Privilege Card Background Images */
.apple-learn-card-1 {
	background-image: url(grup2-1.png);
	background-position: 100% 90%;
	background-repeat: no-repeat;
	background-color: white !important;
}

.welcome-gift-card-2 {
	background-image: url(grup2-2.png);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-color: white !important;
}

.apple-lansman-card-3 {
	background-image: url(grup2-3.png);
	background-repeat: no-repeat;
	background-position: center 80%;
	background-color: white !important;
}

.apple-tradein-card-4 {
	background-image: url(grup2-4.png);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-color: white !important;
}

.pt-service-card-5 {
	background-image: url(grup2-5.png);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-color: white !important;
}

.pt-teachers-card-6 {
	background-image: url(grup2-6.png);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-color: white !important;
}

.pt-consulting-card-7 {
	background-image: url(grup2-7.png);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-color: white !important;
}

.pt-education-card-8 {
	background-image: url(grup2-8.png);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-color: white !important;
}
@media (max-width: 768px){
	.iselect-privilege-card{
		justify-content:center;
		align-items:center;
	}
	.iselect-privilege-title{
		text-align:center;
	}
	.iselect-privilege-text{
		text-align:center;
	}
	.pt-education-card-8,.pt-consulting-card-7,.pt-teachers-card-6,.pt-service-card-5,.apple-tradein-card-4,.apple-lansman-card-3,.welcome-gift-card-2,.apple-learn-card-1{
		background-image: none;
	}
}
/* ==========================================================================
   Section 7: Alt Metin Alanı
   ========================================================================== */
.iselect-bottom-content {
	background: #ffffff;
	padding: 60px 0;
}

.iselect-bottom-content h2,
.iselect-bottom-content h3,
.iselect-bottom-content h4 {
	color: #1D1D1F;
	margin-bottom: 16px;
}

.iselect-bottom-content p {
	color: #6E6E73;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 12px;
}

.iselect-bottom-content a {
	color: #155EC9;
	text-decoration: underline;
}

.iselect-bottom-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.iselect-categories{
	background-color:#f5f5f5 !important;
}
.iselect-category-card{
	background-color:#ffffff !important;
}