/*------------------ Breadcrumb styling --------------------*/
.breadcrumbs
{
	background: linear-gradient(rgba(150, 60, 221, 0.1), rgba(124, 10, 02, 0.8)), url('../img/services.jpg');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.breadcrumb-container
{
	height: 34vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1.5rem;
}

.breadcrumb-container .hero-heading
{
	font-size: 3rem;
}
/*------------------ Breadcrumb styling --------------------*/



/*------------------ Insurance service card styling ---------------*/
.services
{
	margin-top: 2.6rem;
}

.service-card
{
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
	border: none;
	border-radius: 10px;
	margin: 2rem 0;
}

.service-card .service-img
{
	height: 180px;
	width: 100%;
	margin: 0;
	padding: 0;
}

.service-card .card-home
{	
	background: url("../img/home-insurance.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-card .card-auto
{	
	background: url("../img/auto-insurance.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-card .card-vacation
{	
	background: url("../img/vacation-insurance.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-card .card-belonging
{	
	background: url("../img/belongings-insurance.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-card .card-childcare
{	
	background: url("../img/childcare-insurance.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-card .card-health
{	
	background: url("../img/health-insurance.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-card .service-details
{
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}
/*------------------ Insurance service card styling ---------------*/


/*------------------ FAQ styling -------------------------------------*/
.faqs
{
	padding: 100px 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	position: relative;
	overflow: hidden;
}

.faqs::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
	z-index: 1;
}

.faqs::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 50%, transparent 52%);
	background-size: 20px 20px;
	z-index: 1;
}

.faqs .container {
	position: relative;
	z-index: 2;
}

.faq
{
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq:hover
{
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq .question
{
	padding: 25px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq .question h3
{
	color: #fff;
	font-size: 1.2rem;
	margin: 0;
	font-weight: 500;
}

.faq .answer
{
	padding: 0 25px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq.active .answer
{
	padding: 0 25px 25px;
	max-height: 500px;
}

.faq .answer p
{
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0;
}

.faq svg
{
	transition: transform 0.3s ease;
}

.faq.active svg
{
	transform: rotate(180deg);
}

@media (max-width: 768px)
{
	.faqs
	{
		padding: 60px 0;
	}
	
	.faq .question h3
	{
		font-size: 1.1rem;
	}
	
	.faq .question
	{
		padding: 20px;
	}
	
	.faq .answer
	{
		padding: 0 20px;
	}
	
	.faq.active .answer
	{
		padding: 0 20px 20px;
	}
}
/*------------------ FAQ styling -------------------------------------*/


/*------------------ Additional service styling -------------------*/
.additional-service
{
	margin: 4rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.additional-service .addi-service-img
{
	border: none;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.additional-service .addi-ser-heading
{
	font-size: 1.6rem;
	font-weight: 600;
}

.additional-service hr
{
	width: 60px;
	color: var(--third-color);
}
/*------------------ Additional service styling -------------------*/


/* Ürünler Section */
.products {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff4d4d 0%, #ff1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon ion-icon {
    font-size: 35px;
    color: #fff;
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.product-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-card .btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff4d4d 0%, #ff1a1a 100%);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,26,26,0.3);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
    }
    
    .product-icon ion-icon {
        font-size: 25px;
    }
    
    .product-card h3 {
        font-size: 20px;
    }
}

/*---------------------------------------------------------------*/
/*-------------------- Desktop screen styling -------------------*/
/*---------------------------------------------------------------*/
@media screen and (min-width: 789px)
{
	/*----------- Breadcrumb styling ----------*/
	.breadcrumb-container 
	{
		height: 50vh;
	}

	/*----------- Service styling ------------*/
	.service-card
	{
		margin: 0;
	}

	/*----------- FAQ styling --------------*/
	.faq-row
	{
		align-items: flex-start;
	}

	/*------------ Additional service styling ------------*/
	.additional-row
	{
		align-items: flex-start;
	}
}

/* Ek Hizmetler Bölümü Stilleri */
.additional {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.additional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.05;
}

.additional-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.additional-service:first-child {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 50px;
}

.additional-service:first-child .sub-heading {
    color: #dc3545;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.additional-service:first-child .heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #212529;
}

.additional-service:first-child .para-line {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon ion-icon {
    font-size: 30px;
    color: #ffffff;
}

.addi-ser-heading {
    font-size: 1.5rem;
    color: #212529;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #dc3545, transparent);
    margin: 15px 0;
}

.service-card .para-line {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .btn {
    align-self: flex-start;
    padding: 10px 25px;
    font-size: 0.9rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

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

    .additional-service:first-child .heading {
        font-size: 2rem;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon ion-icon {
        font-size: 25px;
    }

    .addi-ser-heading {
        font-size: 1.3rem;
    }
}