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

:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --light-color: #f8f9fa;
    --border-color: #e1e1e1;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    z-index: 10;
    position: relative;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Servis ve Galeri Bölümündeki Butonlar için Özel Stiller */
.services-action .btn-secondary,
.gallery-action .btn-secondary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    margin-top: 30px;
}

.services-action .btn-secondary:hover,
.gallery-action .btn-secondary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Beyaz arka plan üzerindeki butonlar için */
.services, .gallery {
    position: relative;
}

.services-action, .gallery-action {
    text-align: center;
    position: relative;
    z-index: 10;
}

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

/* Header ve Navigasyon */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Sayfa Başlık Bölümü */
.page-header {
    background-color: var(--primary-color);
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%);
    background-size: 10px 10px;
    opacity: 0.2;
    z-index: 1;
}

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

.page-header h1 {
    margin: 0 0 5px;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.page-header p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-header {
        padding: 20px 0;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: translateY(-3px) scale(1.02);
}

.logo-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.logo img {
    max-height: 100px;
    width: auto;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo:hover img {
    transform: translateY(-3px);
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 95%;
    height: 90%;
    transform: translate(-50%, -50%) translateZ(-1px);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    filter: blur(15px);
    opacity: 0;
    border-radius: 10px;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0) 20%, 
        rgba(255, 255, 255, 0) 80%, 
        rgba(255, 255, 255, 0.2) 100%);
    z-index: 1;
    transition: transform 0.5s ease;
    transform: translateX(-100%);
    pointer-events: none;
}

.logo:hover::before {
    opacity: 0.4;
}

.logo:hover::after {
    transform: translateX(100%);
}

.logo:hover img {
    transform: translateY(-3px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a:focus {
    color: var(--primary-color);
}

.nav-links a:hover::after, .nav-links a:focus::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    position: relative;
}

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

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--secondary-color);
    }
}

/* Hero Bölümü */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: '';
    display: block;
    padding-top: 30%; /* Daha da küçük yükseklik */
}

@media (min-width: 992px) {
    .hero::before {
        padding-top: 25%; /* Daha da küçük yükseklik */
    }
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
    pointer-events: auto; /* Kaydırma için tıklamayı etkinleştir */
    cursor: grab; /* Kaydırma işareti */
}

.slider:active {
    cursor: grabbing; /* Aktif kaydırma işareti */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(41, 128, 185, 0.7), rgba(44, 62, 80, 0.9));
    z-index: 1;
    pointer-events: none;
}

.slider-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto; /* Noktaları tıklanabilir yap */
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: #f1c40f;
    display: inline-block;
}

.hero p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 20px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* Hero bölümündeki butonlar için özel stiller */
.hero-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hero-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Hakkımızda Bölümü */
.about {
    background-color: white;
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
}

.about-text {
    flex: 0 0 55%;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 0 0 40%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-3deg);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

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

.about-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

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

.about-features-section {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.about-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
}

.about-features-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.about-features-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-features {
    list-style: none;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.about-features li {
    margin-bottom: 0;
    padding: 15px 20px 15px 50px;
    position: relative;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    background-color: var(--primary-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        padding: 30px;
    }
    
    .about-text, 
    .about-image {
        flex: 0 0 100%;
    }
    
    .about-image {
        margin-top: 30px;
        transform: perspective(1000px) rotateY(0);
    }
    
    .about-features {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 25px;
    }
    
    .about-features-section {
        padding: 25px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Ortalanmış about resmi için stil */
.about-image-centered {
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.about-image-centered img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image-centered img:hover {
    transform: scale(1.03);
}

/* Hizmetler Bölümü */
.services {
    background-color: #f8f9fa;
}

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

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.service-card .image-container::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 oranı */
}

.service-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: var(--transition);
}

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

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--secondary-color);
    text-align: center;
}

.service-card p {
    padding: 0 20px;
    color: #666;
    text-align: center;
    margin-bottom: 15px;
}

.service-card .btn {
    margin: 10px 20px 0;
    align-self: center;
    margin-top: auto;
}

/* Detaylı hizmet kartları için */
.detailed-services .service-card {
    padding-bottom: 30px;
}

.service-details {
    padding: 0 20px;
    margin-bottom: 15px;
}

.service-details ul {
    list-style-type: none;
    padding-left: 5px;
}

.service-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.95rem;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Galeri Bölümü */
.gallery {
    background-color: #f8f9fa;
}

/* Modern galeri stilleri */
.modern-gallery {
    position: relative;
}

/* Filtre butonları */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: white;
    border: none;
    border-radius: 30px;
    color: var(--secondary-color);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

/* Galeri Grid düzeni */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: white;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Galeri Modal (Lightbox) */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Modal içerik kapsayıcısı */
.modal-container {
    position: relative;
    width: 90%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.modal-caption {
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    max-width: 600px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 2001;
}

.modal-prev:hover, .modal-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        height: 70%;
    }
    
    .modal-prev, .modal-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}

/* İletişim Bölümü */
.contact {
    background-color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-card h3, .social-media h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-card ul {
    list-style: none;
}

.contact-card li {
    margin-bottom: 15px;
}

.social-media {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    transition: var(--transition);
}

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

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

input, textarea, select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

textarea {
    resize: vertical;
    min-height: 120px;
    width: 100%;
    display: block;
}

/* Notlar alanı için özel stil */
#modal-message {
    width: 100%;
    margin: 0;
    box-sizing: border-box !important;
    display: block;
    border: 1px solid var(--border-color);
    max-width: 100%;
    min-height: 150px;
}

button[type="submit"] {
    cursor: pointer;
    width: 100%;
    font-size: 1.05rem;
    padding: 12px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    max-height: 85px;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: all 0.5s ease;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    filter: drop-shadow(0 5px 10px rgba(52, 152, 219, 0.15));
}

.footer-logo:hover img {
    opacity: 1;
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 15px rgba(52, 152, 219, 0.3));
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Footer ve diğer koyu arka planlı bölümlerdeki butonlar */
footer .btn-secondary,
.cta .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

footer .btn-secondary:hover,
.cta .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        flex: 0 0 calc(50% - 20px);
    }
    
    /* Logo büyüklüğü tablet boyutunda ayarlanıyor */
    .logo img {
        max-height: 90px;
        box-shadow: 
            0 8px 15px rgba(0, 0, 0, 0.08),
            0 4px 4px rgba(0, 0, 0, 0.04);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Logo büyüklüğü telefon boyutunda ayarlanıyor */
    .logo img {
        max-height: 85px;
        box-shadow: 
            0 6px 12px rgba(0, 0, 0, 0.06),
            0 3px 3px rgba(0, 0, 0, 0.03);
    }
    
    /* Header yüksekliğini ayarlama */
    nav {
        padding: 10px 0;
    }
    
    .hero::before {
        padding-top: 45%; /* Daha da küçük yükseklik */
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-navigation {
        bottom: 15px;
    }
    
    .measurement-inputs {
        flex-direction: column;
        gap: 10px;
    }

    .modal {
        padding: 10px 0;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 70%;
    }

    .modal input, 
    .modal textarea, 
    .modal select {
        font-size: 0.95rem;
        padding: 10px;
    }
    
    #modal-message {
        min-height: 120px;
    }

    .quote-form button[type="submit"] {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after, .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero::before {
        padding-top: 60%; /* Daha da küçük yükseklik */
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .gallery-item {
        flex: 0 0 calc(100% - 20px);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }

    .logo img {
        max-height: 80px;
    }
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 30px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    animation: modalOpen 0.4s ease;
    max-height: 85vh;
    overflow-y: auto;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

#modalTitle {
    font-size: 1.5rem;
    margin-top: 5px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

#modalDesc {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.95rem;
}

/* Teklif Formu Stilleri */
.quote-form {
    margin-top: 20px;
}

.quote-form .form-group {
    margin-bottom: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.quote-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.modal input, 
.modal textarea, 
.modal select {
    width: 100%;
    display: block;
    box-sizing: border-box !important;
    max-width: 100%;
}

#modal-message {
    width: 100%;
    margin: 0;
    box-sizing: border-box !important;
    display: block;
    border: 1px solid var(--border-color);
    max-width: 100%;
    min-height: 150px;
}

/* Modal içi form elemanlarını düzgün yerleştir */
.quote-form button[type="submit"] {
    margin-top: 10px;
    padding: 15px;
}

.measurements {
    background-color: rgba(52, 152, 219, 0.05);
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.measurements h4 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.measurement-inputs {
    display: flex;
    gap: 15px;
}

.measurement-inputs > div {
    flex: 1;
}

/* Galeri Responsive Düzenlemeler */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-filter {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .modal-prev, .modal-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Hakkımızda bölümündeki butonlar */
.about-action .btn-secondary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.about-action .btn-secondary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Çalışma Sürecimiz */
.process {
    background-color: white;
    padding: 80px 0;
}

.process h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    width: 250px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px;
    position: relative;
    z-index: 5;
}

.process-step h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Çalışma Süreci */
@media (max-width: 992px) {
    .process-steps {
        gap: 20px;
    }
    
    .process-step {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .process-step {
        width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .process-step {
        width: 100%;
    }
}

/* CTA Bölümü */
.cta {
    background-color: var(--primary-color);
    background-image: linear-gradient(to right, #3498db, #2c3e50);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 80%;
    }
}

/* Testimonials (Müşteri Yorumları) Bölümü */
.projects-testimonials {
    background-color: white;
    padding: 80px 0;
}

.projects-testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

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

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.testimonial {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    width: 350px;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
}

.testimonial-content p::before {
    content: '\201C'; /* Açılış tırnak işareti */
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -15px;
    left: -15px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.testimonial-author p {
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .testimonial {
        width: calc(50% - 25px);
    }
}

@media (max-width: 768px) {
    .testimonial {
        width: 100%;
    }
}

/* Gallery Styles End */

/* Tribute Section Styles */
.tribute-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.tribute-box {
    display: flex;
    gap: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 30px;
    margin: 0 auto;
}

.tribute-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.tribute-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.tribute-text {
    flex: 0 0 60%;
    max-width: 60%;
}

.tribute-text::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 120px;
    color: rgba(0,0,0,0.035);
    font-family: Georgia, serif;
    line-height: 0.5;
}

.tribute-text h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 32px;
    position: relative;
    padding-bottom: 18px;
    font-weight: 600;
}

.tribute-text h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #ff6b6b, #ff9e9e);
}

.tribute-text p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #444;
    font-size: 16px;
    letter-spacing: 0.2px;
}

.tribute-text em {
    font-style: italic;
    color: #555;
    font-size: 19px;
    display: block;
    margin-top: 25px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(255, 107, 107, 0.3);
}

.tribute-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    position: relative;
    width: 100%;
}

.signature-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signature-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.decoration-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.2), transparent);
}

.decoration-star {
    font-size: 14px;
    color: #c0392b;
    margin: 0 15px;
    opacity: 0.7;
}

.signature-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
}

.tribute-name {
    font-size: 42px;
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tribute-date-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tribute-date-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.15), transparent);
    margin-bottom: 5px;
}

.tribute-date {
    font-size: 16px;
    color: #777;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .tribute-name {
        font-size: 36px;
    }
    
    .tribute-date {
        font-size: 14px;
    }
}

/* Mobil Responsive Düzenlemeler */
@media screen and (max-width: 768px) {
    .tribute-box {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .tribute-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .tribute-text {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .tribute-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 480px) {
    .tribute-section {
        padding: 30px 0;
    }
    
    .tribute-box {
        padding: 15px;
    }
    
    .tribute-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .tribute-text h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .tribute-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .tribute-text em {
        display: block;
        font-size: 1rem;
        margin: 15px 0;
        text-align: center;
    }
    
    .tribute-signature {
        margin-top: 20px;
    }
    
    .signature-decoration .decoration-line {
        width: 30px;
    }
    
    .signature-decoration .decoration-star {
        font-size: 1rem;
    }
    
    .tribute-name {
        font-size: 1.2rem;
    }
    
    .tribute-date {
        font-size: 0.85rem;
    }
}

/* History Section Styles */
.history-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.history-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.history-image {
    flex: 0 0 45%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.history-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(52, 152, 219, 0.2), transparent);
    z-index: 1;
}

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

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

.history-text {
    flex: 0 0 50%;
}

.history-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

/* Mission Vision Section Styles */
.mission-vision-section {
    padding: 80px 0;
    background-color: #fff;
}

.mission-vision-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
}

.mission-box, .vision-box {
    flex: 0 0 48%;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-box::before, .vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

.mission-box::before {
    background-color: var(--primary-color);
}

.vision-box::before {
    background-color: #ff6b6b;
}

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

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    background-color: #f8f9fa;
}

.mission-box .icon-container {
    color: var(--primary-color);
}

.vision-box .icon-container {
    color: #ff6b6b;
}

.icon-container i {
    font-size: 36px;
}

.mission-box h3, .vision-box h3 {
    margin-bottom: 20px;
    font-size: 24px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.mission-box h3::after, .vision-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
}

.mission-box h3::after {
    background-color: var(--primary-color);
}

.vision-box h3::after {
    background-color: #ff6b6b;
}

.mission-box p, .vision-box p {
    line-height: 1.8;
    color: #666;
}

/* Responsive styles for History and Mission-Vision sections */
@media (max-width: 992px) {
    .history-content {
        flex-direction: column;
    }
    
    .history-image, .history-text {
        flex: 0 0 100%;
    }
    
    .mission-vision-container {
        flex-direction: column;
    }
    
    .mission-box, .vision-box {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}

/* Contact Styles */

/* Sık Sorulan Sorular (FAQ) Bölümü */
.faq {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    border-left-color: var(--primary-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    flex: 1;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--primary-color);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.3);
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 20px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
}

/* About-image-section ve action-buttons için yeni stiller */
.about-action {
    margin-top: 60px;
    text-align: center;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.action-buttons .btn {
    min-width: 180px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.action-buttons .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.action-buttons .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.action-buttons .btn-secondary {
    background-color: white;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.action-buttons .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Responsive styles for History and Mission-Vision sections */
@media (max-width: 992px) {
    .featured-project-content {
        flex-direction: column;
    }
    
    .featured-project-info,
    .featured-project-image {
        flex: 0 0 100%;
    }
    
    .featured-project-image {
        order: -1;
        margin-bottom: 30px;
    }
}

/* Öne Çıkan Proje Bölümü Stilleri */
.featured-project-section {
    padding: 60px 0;
    background-color: #fff;
}

.featured-project-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.featured-project-info {
    flex: 0 0 55%;
}

.featured-project-info h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.featured-project-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.featured-project-info p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

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

.project-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.project-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.featured-project-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.featured-project-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.featured-project-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.featured-project-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .featured-project-content {
        flex-direction: column;
    }
    
    .featured-project-info,
    .featured-project-image {
        flex: 0 0 100%;
    }
    
    .featured-project-image {
        order: -1;
        margin-bottom: 30px;
    }
}

.about-image-section .about-image {
    max-width: 800px;
    width: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.about-image-section .about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
    pointer-events: none;
}

.about-image-section .about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-section .about-image:hover img {
    transform: scale(1.03);
}

/* 19 Mayıs Özel Köşesi */
.special-banner.may19 {
    background: linear-gradient(135deg, #e30a17 0%, #9d0b11 100%);
    padding: 40px 0;
    margin: 0 0 40px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.special-banner.may19::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.may19-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.may19-image {
    flex: 0 0 38%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.25);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.may19-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
}

.may19-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.may19-image:hover img {
    transform: scale(1.08);
}

.may19-text {
    flex: 0 0 57%;
    color: #fff;
    text-align: center;
}

.may19-text h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.2);
}

.may19-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
}

.quote-box {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-box p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.quote-box p::before,
.quote-box p::after {
    content: '"';
    font-size: 2.5rem;
    position: absolute;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 0;
}

.quote-box p::before {
    top: 15px;
    left: -15px;
}

.quote-box p::after {
    bottom: -5px;
    right: -15px;
}

.quote-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.quote-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.quote-date {
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 5px 15px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .may19-text h2 {
        font-size: 2rem;
    }
    
    .quote-box p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .may19-content {
        flex-direction: column;
    }
    
    .may19-image, .may19-text {
        flex: 0 0 100%;
    }
    
    .may19-image {
        transform: perspective(1000px) rotateY(0);
        max-width: 80%;
        margin: 0 auto;
    }
    
    .may19-text h2 {
        font-size: 1.8rem;
        margin-top: 20px;
    }
    
    .quote-box {
        padding: 20px;
    }
    
    .quote-box p {
        font-size: 1.1rem;
    }
    
    .quote-date {
        font-size: 1rem;
    }
}

/* Kurban Bayramı Banner Stili */
.special-banner.kurban {
    background: linear-gradient(135deg, #38761d 0%, #274e13 100%);
    padding: 40px 0;
    margin: 0 0 40px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.special-banner.kurban::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.special-banner.kurban .may19-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    align-items: center;
}

.special-banner.kurban .may19-text h2 {
    color: #ffffff;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.2);
}

.special-banner.kurban .quote-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.special-banner.kurban .quote-box p {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.special-banner.kurban .quote-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.special-banner.kurban .quote-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.special-banner.kurban .quote-date {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .special-banner.kurban .may19-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .special-banner.kurban .may19-text h2 {
        font-size: 2rem;
    }

    .special-banner.kurban .quote-box {
        padding: 20px;
    }

    .special-banner.kurban .quote-box p {
        font-size: 1.1rem;
    }
} 