/* Hakkımızda Sayfası CSS - SSTONE BETON */


/* Hero Section Banner */

#hero-section1 {
    background-image: url('image/image-4.jpg');
    height: 300px;
}


/* About Full Section */

.about-full {
    padding: 60px 0;
}


/* About Intro */

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2.section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text h2.section-title:after {
    margin-left: 0;
}

.about-text p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}


/* Hakkımızda sayfasındaki büyük resim için boyut sınırlaması */

.about-image img {
    width: 100%;
    max-width: 500px;
    /* maksimum genişliği sınırla */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
    /* merkeze hizala */
}


/* Vision & Mission */

.about-vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.vision,
.mission {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.vision .feature-icon,
.mission .feature-icon {
    width: 70px;
    height: 70px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.vision h3,
.mission h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.vision p,
.mission p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}


/* Why Choose Us */

.why-choose-us {
    margin-bottom: 60px;
}

.why-choose-us .section-title {
    margin-bottom: 40px;
}

.why-choose-us .features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}


/* Service Approach */

.service-approach {
    background-color: #f8f8f8;
    padding: 60px 0;
    margin-bottom: 60px;
}

.service-approach .section-title {
    margin-bottom: 30px;
}

.service-approach>.container>p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
}

.service-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.service-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.service-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}


/* Quality Policy */

.quality-policy {
    margin-bottom: 60px;
}

.quality-policy .section-title {
    margin-bottom: 40px;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.quality-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.certificates {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.certificate {
    text-align: center;
}

.certificate img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 10px;
}

.certificate span {
    font-size: 14px;
    color: #666;
    display: block;
}


/* Customer Testimonials */

.customer-testimonials {
    margin-bottom: 60px;
}

.customer-testimonials .section-title {
    margin-bottom: 40px;
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial {
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote {
    font-size: 30px;
    color: #0056b3;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.client-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    font-style: normal;
}


/* CTA Section */

.cta-section {
    text-align: center;
    padding: 60px;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 60px;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.cta-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-section .btn {
    padding: 12px 30px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}


/* Responsive Styles */

@media (max-width: 992px) {
    .about-intro,
    .quality-content {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1;
    }
    .why-choose-us .features {
        grid-template-columns: 1fr 1fr;
    }
    .about-vision-mission {
        grid-template-columns: 1fr;
    }
    .service-items {
        grid-template-columns: 1fr;
    }
    .testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #hero-section1 {
        height: 200px;
    }
    .why-choose-us .features {
        grid-template-columns: 1fr;
    }
    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .service-text p {
        text-align: center;
    }
    .certificates {
        flex-direction: column;
        align-items: center;
    }
    .certificate {
        margin-bottom: 20px;
    }
    .cta-section {
        padding: 40px 20px;
    }
    .cta-section h2 {
        font-size: 26px;
    }
    .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .cta-section .btn {
        width: 100%;
    }
}


/* İletişim Sayfası CSS Stilleri */


/* İletişim Banner */

.contact-banner {
    height: 300px;
    background-image: url('image/image2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.contact-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 600;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}


/* Ana İçerik Stili */

.contact-page-content {
    padding: 40px 0 60px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
}

.contact-intro h2 {
    font-size: 18px;
    color: #f7941d;
    margin-bottom: 10px;
}

.contact-intro h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}


/* İletişim Bilgileri Kartları */

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-info-card {
    display: flex;
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #0056b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.icon-wrapper i {
    color: #fff;
    font-size: 20px;
}

.info-content h4 {
    color: #0056b3;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    color: #555;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.info-content p a {
    color: #555;
    text-decoration: none;
}

.info-content p a:hover {
    color: #0056b3;
}


/* Harita Container */

.map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/* Duyarlı Tasarım */

@media (max-width: 992px) {
    .contact-info-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        height: 200px;
    }
    .banner-content h1 {
        font-size: 32px;
    }
    .contact-intro h3 {
        font-size: 26px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .contact-banner {
        height: 150px;
    }
    .banner-content h1 {
        font-size: 24px;
    }
    .contact-intro h3 {
        font-size: 22px;
    }
    .contact-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .icon-wrapper {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


/* Referanslar Sayfası CSS Stilleri */


/* Referanslar Banner */

.references-banner {
    height: 300px;
    background-image: url('image/referanslar-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.references-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 600;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}


/* Ana İçerik Stili */

.references-page-content {
    padding: 40px 0 60px;
}

.references-intro {
    text-align: center;
    margin-bottom: 40px;
}

.references-intro h2 {
    font-size: 18px;
    color: #f7941d;
    margin-bottom: 10px;
}

.references-intro h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.references-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}


/* Referans Projeleri Stili */

.reference-projects {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

.reference-project {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reference-image {
    flex: 1;
    min-height: 400px;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-review {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rating {
    color: #f7941d;
    font-size: 20px;
    margin-bottom: 15px;
}

.reviewer-name {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.project-type {
    color: #f7941d;
    font-size: 16px;
    margin-bottom: 15px;
}

.review-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
}


/* Müşteri Yorumları */

.customer-testimonials {
    padding-top: 20px;
}

.customer-testimonials h2 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.testimonial-avatar i {
    color: #999;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-info .rating {
    font-size: 14px;
    margin-bottom: 0;
}

.testimonial-body p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
}


/* Duyarlı Tasarım */

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .references-banner {
        height: 200px;
    }
    .banner-content h1 {
        font-size: 32px;
    }
    .references-intro h3 {
        font-size: 26px;
    }
    .reference-project {
        flex-direction: column;
    }
    .reference-image {
        min-height: 250px;
    }
    .reference-review {
        padding: 20px;
    }
    .reviewer-name {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .references-banner {
        height: 150px;
    }
    .banner-content h1 {
        font-size: 24px;
    }
    .references-intro h3 {
        font-size: 22px;
    }
    .rating {
        font-size: 16px;
    }
    .customer-testimonials h2 {
        font-size: 22px;
    }
}