/* MINSUS Madencilik Kurumsal Web Sitesi CSS */

:root {
    /* Renk Şeması */
    --primary-green: #2E7D32; /* Yeşil detaylar */
    --secondary-green: #43A047; /* İkincil yeşil ton */
    --dark-gray: #333333; /* Koyu gri detaylar */
    --medium-gray: #666666; /* Orta ton gri */
    --light-gray: #F5F5F5; /* Açık gri ton */
    --mineral-white: #F8F9FA; /* Mineral beyaz */
    --pure-white: #FFFFFF; /* Saf beyaz */
}

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--mineral-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

p {
    margin-bottom: 15px;
    color: var(--medium-gray);
}

a {
    text-decoration: none;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-green);
}

.btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--pure-white);
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-green);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-center {
    display: block;
    margin: 30px auto 0;
    text-align: center;
    max-width: 200px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

section {
    padding: 80px 0;
}

/* Header Stili */
header {
    background-color: var(--pure-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo h1 {
    color: var(--primary-green);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
}

.logo img {
    height: 110px;
    width: auto;
    display: block;
}

/* Mobil menü butonu */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn .menu-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-green);
    position: relative;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:first-child {
    transform: translateY(-4px);
}

.mobile-menu-btn span:nth-child(2) {
    transform: translateY(0);
}

.mobile-menu-btn span:last-child {
    transform: translateY(4px);
}

.mobile-menu-btn.active span:first-child {
    transform: translateY(0) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active span:last-child {
    transform: translateY(0) rotate(-45deg);
}

/* Navigasyon menüsü */
nav {
    z-index: 999;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
    display: block;
}

nav ul li a:hover {
    color: var(--primary-green);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    color: var(--pure-white);
    text-align: center;
    padding: 150px 0;
}

.hero h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--pure-white);
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--mineral-white);
}

/* Features Section */
.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.feature-box i {
    color: var(--primary-green);
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* About Preview Section */
.about-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 0;
}

.about-image img {
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services Preview Section */
.services-preview {
    background-color: var(--light-gray);
}

.services-preview h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.services-preview h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Index sayfasındaki services-grid max 300px olacak */
.services-preview .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    gap: 30px;
    justify-content: center;
}

/* Hizmetlerimiz sayfasındaki services-grid daha geniş olacak */
.services-content .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background-color: var(--pure-white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
}

/* Projects Preview Section */
.projects-preview h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.projects-preview h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.projects-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.project-slide {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.projects-slider .project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(46, 125, 50, 0.9);
    color: var(--pure-white);
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.project-slide:hover .project-info {
    transform: translateY(0);
}

.project-slide:hover img {
    transform: scale(1.1);
}

.projects-slider .project-info h3 {
    color: var(--pure-white);
    margin-bottom: 10px;
}

.projects-slider .project-info p {
    color: var(--mineral-white);
    margin-bottom: 0;
}

/* Contact Preview Section */
.contact-preview {
    background-color: var(--light-gray);
}

.contact-preview h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.contact-preview h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.contact-content {
    padding: 80px 0;
}

.contact-intro {
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-intro h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-box {
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-header h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--dark-gray);
    position: relative;
    padding-bottom: 15px;
}

.contact-info-header h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 0;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    color: var(--primary-green);
    font-size: 24px;
    margin-right: 15px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.info-text p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.contact-form-box {
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-form-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--dark-gray);
    position: relative;
    padding-bottom: 15px;
}

.contact-form-box h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group .required {
    color: #e53935;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 5px rgba(46, 125, 50, 0.2);
}

.form-submit {
    margin-top: 30px;
}

.map-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.map-section h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--mineral-white);
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: var(--primary-green);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--light-gray);
}

.footer-links h4,
.footer-social h4 {
    color: var(--pure-white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-gray);
}

.footer-links ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a i {
    color: var(--pure-white);
    font-size: 18px;
}

.social-icons a:hover {
    background-color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: var(--light-gray);
    margin-bottom: 0;
}

.footer-credits p {
    margin-bottom: 0;
}

.footer-credits a {
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.footer-credits a:hover {
    color: var(--secondary-green);
    text-decoration: none;
}

/* Temiz mobil menü tanımlamaları */
header {
    background-color: var(--pure-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 110px;
    width: auto;
    display: block;
}

/* Mobil menü butonu */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn .menu-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-green);
    position: relative;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:first-child {
    transform: translateY(-4px);
}

.mobile-menu-btn span:nth-child(2) {
    transform: translateY(0);
}

.mobile-menu-btn span:last-child {
    transform: translateY(4px);
}

.mobile-menu-btn.active span:first-child {
    transform: translateY(0) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active span:last-child {
    transform: translateY(0) rotate(-45deg);
}

/* Mobil görünüm için medya sorgusu */
@media (max-width: 768px) {
    .logo img {
        height: 70px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--pure-white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 30px;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 1001;
    }
    
    nav.active {
        right: 0;
        display: block !important;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        display: block !important;
    }
    
    nav ul li {
        margin: 15px 0;
        margin-left: 0;
        width: 100%;
        display: block;
    }
    
    nav ul li a {
        padding: 8px 0;
        font-size: 16px;
        text-align: left;
        width: 100%;
        display: block !important;
        color: var(--dark-gray) !important;
    }
    
    /* Mobil menüdeki bağlantıların hover stilini güçlendir */
    nav ul li a:hover {
        color: var(--primary-green) !important;
        font-weight: bold;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .service-image img {
        border-radius: 5px 5px 0 0;
        height: 250px;
    }
    
    .service-details {
        padding: 20px;
    }
}

/* Animasyon Sınıfları */
.feature-box, .service-card, .project-slide, .about-text, .about-image {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.feature-box.animate, .service-card.animate, .project-slide.animate, .about-text.animate, .about-image.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Sayfa Başlık Bölümü */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--pure-white);
    text-align: center;
    padding: 50px 0;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--pure-white);
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    color: var(--mineral-white);
}

.breadcrumb span {
    margin: 0 10px;
    color: var(--mineral-white);
}

/* Hakkımızda Sayfası */
.about-content {
    padding: 40px 0;
    text-align: center;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.about-image {
    text-align: center;
    margin: 0 auto 30px;
    width: 80%;
    max-width: 800px;
    display: block;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

.mission-box, .vision-box {
    background-color: var(--pure-white);
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-box .icon, .vision-box .icon {
    color: var(--primary-green);
    font-size: 40px;
    margin-bottom: 20px;
}

.mission-box h3, .vision-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.values {
    margin-bottom: 60px;
}

.values h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.values h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    color: var(--primary-green);
    font-size: 35px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.team h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.team h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

.team-member {
    background-color: var(--pure-white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.member-info .position {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 15px;
}

.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    margin: 0 5px;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-green);
    color: var(--pure-white);
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .about-preview .container,
    .about-main {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        display: block;
        grid-template-columns: unset;
    }

    .contact-info-box,
    .contact-form-box {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .contact-form-box {
        margin-bottom: 0;
    }
}

/* Mobil görünüm için ekstra kontroller */
@media screen and (max-width: 768px), screen and (max-device-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .about-text h2,
    .values h2,
    .team h2 {
        font-size: 28px;
    }
    
    .contact-form-box,
    .contact-info-box {
        padding: 20px;
        width: 100%;
    }
    
    .contact-wrapper {
        display: block;
    }
    
    .contact-info-box,
    .contact-form-box {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* Çok küçük ekranlar için */
@media screen and (max-width: 480px), screen and (max-device-width: 480px) {
    .contact-wrapper {
        display: block;
    }
    
    .contact-content {
        padding: 40px 0;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 15px;
    }
}

/* Hizmetlerimiz Sayfası */
.services-content {
    padding: 80px 0;
}

.services-intro {
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.services-intro h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 50px;
    background-color: var(--pure-white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px 0 0 5px;
}

.service-details {
    padding: 30px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary-green);
    margin-right: 10px;
}

/* CTA Bölümü */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--pure-white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--pure-white);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--mineral-white);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Projelerimiz Sayfası */
.projects-content {
    padding: 80px 0;
}

.projects-intro {
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.projects-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.projects-intro h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.project-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 20px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-green);
    color: var(--pure-white);
    border-color: var(--primary-green);
}

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

.project-card {
    background-color: var(--pure-white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.project-card .project-info {
    padding: 20px;
    background-color: var(--pure-white);
    position: relative;
    transform: none;
}

.project-card .project-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--medium-gray);
}

.project-meta span {
    margin-right: 15px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.project-meta i {
    color: var(--primary-green);
    margin-right: 5px;
}

/* Proje Modal */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--pure-white);
    margin: 50px auto;
    max-width: 900px;
    border-radius: 5px;
    overflow: hidden;
}

.modal-header {
    padding: 20px;
    background-color: var(--primary-green);
    color: var(--pure-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--pure-white);
}

.modal-close {
    color: var(--pure-white);
    font-size: 28px;
    cursor: pointer;
}

.modal-body {
    padding: 30px;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.modal-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.modal-info h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--dark-gray);
}

.modal-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.modal-info ul li {
    margin-bottom: 10px;
}

/* Ürünler Sayfası Stilleri */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f9f9f9;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3, 
.product-details h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.product-info p,
.product-details p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-info .btn,
.product-details .btn-link {
    margin-top: auto;
}

.product-info .btn {
    padding: 8px 16px;
    background-color: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.product-info .btn:hover {
    background-color: var(--secondary-green);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 0;
}

.no-products p {
    font-size: 16px;
    color: #666;
}

/* Ana Sayfa Ürünler Bölümü Stilleri */
#homepage-products {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.product-slide {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    width: 33.333%;
    padding: 0 15px;
    margin-bottom: 20px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.product-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-content .btn {
    margin-top: auto;
    align-self: center;
    padding: 8px 20px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.product-content .btn:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

/* Ürünler slider düzeni */
.product-slide {
    transition: transform 0.3s ease;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .product-slide {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
    }
}

@media (max-width: 767px) {
    .product-slide {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    
    #homepage-products .product-slide {
        margin-bottom: 20px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content h3 {
        font-size: 18px;
    }
}

/* Ürün Detay Sayfası Stilleri */
.product-detail {
    padding: 60px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.product-detail-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-info {
    padding: 20px;
}

.product-detail-info h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.product-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.product-category {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.product-category .label {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.action-buttons .btn {
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1a3c6e;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #122c50;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #e9e9e9;
}

.product-detail-content {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.product-content {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.product-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.product-content h3 {
    font-size: 20px;
    color: #444;
    margin: 30px 0 15px;
}

.product-content p {
    margin-bottom: 20px;
}

.product-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.product-content li {
    margin-bottom: 8px;
}

.product-content strong {
    color: #333;
}

.similar-products {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.similar-products h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #333;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

/* Ürün Slider Stilleri */
.products-slider-container {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}

.products-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.product-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    height: 200px;
    overflow: hidden;
}

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

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

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.product-content p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-content .btn {
    align-self: flex-start;
    margin-top: auto;
    background-color: #e68d43;
    color: white;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.product-content .btn:hover {
    background-color: #d37b2f;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.prev-btn,
.next-btn {
    background-color: rgba(230, 141, 67, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.prev-btn {
    margin-left: -20px;
}

.next-btn {
    margin-right: -20px;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(211, 123, 47, 1);
}

.section-footer {
    text-align: center;
    margin-top: 30px;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .product-slide {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .product-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* Mobil Hizmet Kartları İçin Özel Stiller */
@media screen and (max-width: 991px) {
    .service-item {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    .service-image img {
        border-radius: 5px 5px 0 0 !important;
        height: 250px !important;
    }
    
    .service-details {
        padding: 20px !important;
    }
} 