/* Hakkımızda Section Styles */
.hakkimizda-section {
    padding: 80px 0 !important;
    background: #f9f9f9;
    margin: 0 !important;
    /* Her bölümün tam ekran görünmesi için minimum yükseklik */
    min-height: 100vh;
}

.hakkimizda-section .container {
    max-width: 1200px;
    padding: 0 15px !important;
}

.hakkimizda-section .row {
    margin: 0 !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Bootstrap col-* classes stop stacking when the parent becomes a flex container.
   Ensure predictable widths in this section. */
.hakkimizda-section .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.hakkimizda-text {
    padding: 40px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 !important;
    background: transparent;
}

.hakkimizda-text h2 {
    font-size: 36px;
    color: #182F4A;
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 4px solid #FF6B35;
    padding-bottom: 15px;
    display: inline-block;
}

.hakkimizda-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.hakkimizda-image {
    padding: 20px !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hakkimizda-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hakkimizda-section .col-md-6 {
    padding: 15px !important;
    margin: 0 !important;
}

.hakkimizda-section .col-md-12 {
    padding: 0 !important;
    margin: 0 !important;
}

.featured-services .col-md-6 {
    padding: 0 !important;
    margin: 0 !important;
}

/* Featured Services Section - 2 Column Layout */
.featured-services {
    padding: 0 !important;
    background-color: #f9f9f9;
    margin: 0 !important;
}

.featured-services .container {
    padding: 0 !important;
}

.featured-services .row {
    margin: 0 !important;
    padding: 0 !important;
}

.featured-services .section-title {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin: 0 0 20px 0;
    padding: 0;
    font-weight: 700;
}

.service-box {
    margin: 0;
    padding: 0;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #e9ecef;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 47, 74, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-overlay p {
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 20px;
    color: #182F4A;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.service-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0 0 15px 0;
}

.btn-incele {
    display: inline-block;
    background: #182F4A;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
    border: 2px solid #182F4A;
}

.btn-incele:hover {
    background: transparent;
    color: #182F4A;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hakkimizda-section {
        padding: 40px 0 !important;
    }
    
    .hakkimizda-text {
        padding: 20px !important;
    }
    
    .hakkimizda-image {
        padding: 20px !important;
        margin-top: 20px !important;
    }
    
    .hakkimizda-text h2 {
        font-size: 24px;
    }
    
    .service-image {
        height: 250px;
    }
    
    .featured-services .section-title {
        font-size: 24px;
    }
    
    .service-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .hakkimizda-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hakkimizda-text h2,
    .featured-services .section-title {
        font-size: 20px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 15px;
    }
}

/* Projelerimiz Section */
.projelerimiz-section {
    background: #f9f9f9;
    padding: 80px 0;
    margin: 0;
    /* Anasayfada bu kısmın da tam bir sayfa kaplaması için */
    min-height: 100vh;
}

.projelerimiz-section .container-fluid {
	max-width: 1400px;
	padding: 0 20px;
}

.projelerimiz-section .row {
	display: flex;
	align-items: stretch;
	margin: 0;
    flex-wrap: wrap;
}

/* Keep the left/right columns stable when using flex on the row */
.projeler-sol {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.projeler-sag {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.projeler-sol {
	padding: 40px;
	background: white;
	border-right: 4px solid #182F4A;
}

.projeler-sol h2 {
	font-size: 36px;
	color: #182F4A;
	font-weight: 700;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 3px solid #FF6B35;
}

.projeler-sol p {
	font-size: 14px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 15px;
	text-align: justify;
}

.projeler-sag {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.projelerimiz-section .proje-card {
	display: flex;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0,0,0,0.14);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex: 1;
	min-height: 380px;
	height: 100%;
}

.projelerimiz-section .proje-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.proje-image {
	width: 45%;
	background-size: cover;
	background-position: center;
	position: relative;
}

.proje-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
    /* Fotoğrafta hiçbir karartma/tint olmasın */
    display: none !important;
}

.proje-content h3 {
	font-size: 24px;
	color: #182F4A;
	font-weight: 700;
	margin-bottom: 12px;
}

.proje-content p {
	font-size: 15px;
	line-height: 1.75;
	color: #53607a;
	margin-bottom: 20px;
}

.btn-proje {
	display: inline-block;
	color: #182F4A;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	align-self: flex-start;
	padding: 10px 24px;
	border: 1px solid #182F4A;
	border-radius: 8px;
}

.btn-proje:hover {
	color: #ffffff;
	background: #182F4A;
	transform: translateX(3px);
}

.btn-proje:hover {
	color: #FF6B35;
	text-decoration: none;
	transform: translateX(5px);
}


.btn-proje {
	display: inline-block;
	color: #182F4A;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	align-self: flex-start;
}

.btn-proje:hover {
	color: #FF6B35;
	text-decoration: none;
	transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .projeler-sol,
    .projeler-sag {
        flex: 0 0 100%;
        max-width: 100%;
    }

	.projeler-sol {
		border-right: none;
		border-bottom: 4px solid #182F4A;
	}
	
	.proje-card {
		flex-direction: column;
	}
	
	.proje-image,
	.proje-content {
		width: 100%;
	}
	
	.proje-image {
		height: 250px;
	}
}

@media (max-width: 768px) {
	.projeler-sol h2 {
		font-size: 28px;
	}
	
	.projeler-sol p {
		font-size: 13px;
	}
	
	.proje-content h3 {
		font-size: 20px;
	}
	
	.proje-content {
		padding: 20px;
	}
}
