/* Modern Tasarım İçin CSS */
:root {
    --primary-color: #2c3e50;     /* Koyu lacivert */
    --secondary-color: #e74c3c;   /* Kırmızı aksan */
    --accent-color: #f39c12;      /* Altın sarısı */
    --light-color: #ecf0f1;
    --dark-color: #1a2530;
    --gray-color: #95a5a6;
    --white-color: #ffffff;
    --black-color: #000000;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #34495e);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Header Stili */
header {
    background-color: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.logo img {
    height: 60px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 50px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    position: relative;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
    padding: 5px 0;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
}

#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/brushed-alum-dark.png');
    background-color: #1a1a1a;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(114, 113, 113, 0.8) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    z-index: 10;
}

.hero-logo-box {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 3px solid #FF9500;
    box-shadow: 0 0 30px rgba(255, 149, 0, 0.5);
    animation: logoPulse 2s ease-in-out infinite alternate;
}

@keyframes logoPulse {
    from { box-shadow: 0 0 30px rgba(255, 149, 0, 0.5); }
    to { box-shadow: 0 0 50px rgba(255, 149, 0, 0.8); }
}

.hero-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-slogan {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FF9500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.slogan-underline {
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #FF9500, transparent);
    margin: 1rem auto 2rem;
    animation: lineGrow 1.5s ease-out 1s forwards;
}

@keyframes lineGrow {
    to { width: 200px; }
}

.hero-desc {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero bölümü için mobil uyumluluk iyileştirmeleri */
@media (max-width: 768px) {
    .hero-content {
        width: 95%;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-logo-container {
        margin-bottom: 1.5rem;
    }
    
    .hero-logo-box {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .hero-slogan {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .hero-desc {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .slogan-underline {
        margin: 0.8rem auto 1.5rem;
    }
    
    @keyframes lineGrow {
        to { width: 180px; }
    }
}

@media (max-width: 480px) {
    #hero {
        height: 100vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-logo-box {
        width: 100px;
        height: 100px;
        padding: 0.8rem;
        border-width: 2px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .hero-desc {
        font-size: 0.9rem;
        line-height: 1.4;
        max-width: 100%;
    }
    
    .slogan-underline {
        margin: 0.6rem auto 1.2rem;
        height: 2px;
    }
    
    @keyframes lineGrow {
        to { width: 150px; }
    }
    
    .logo-glow {
        box-shadow: 0 0 15px rgba(255, 149, 0, 0.5);
    }
    
    @keyframes logoPulse {
        from { box-shadow: 0 0 15px rgba(255, 149, 0, 0.4); }
        to { box-shadow: 0 0 25px rgba(255, 149, 0, 0.7); }
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 360px) {
    .hero-logo-box {
        width: 90px;
        height: 90px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-slogan {
        font-size: 1rem;
    }
    
    .hero-desc {
        font-size: 0.85rem;
    }
    
    @keyframes lineGrow {
        to { width: 120px; }
    }
}

/* Yatay mobil cihazlar için düzenlemeler */
@media (max-height: 500px) and (orientation: landscape) {
    #hero {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 6rem 1rem 2rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-logo-container {
        margin-bottom: 0;
    }
    
    .hero-logo-box {
        width: 90px;
        height: 90px;
        margin: 0;
    }
    
    .hero-text-content {
        text-align: left;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
    }
    
    .hero-desc {
        font-size: 0.9rem;
        margin: 0;
    }
    
    .slogan-underline {
        margin: 0.5rem 0 1rem 0;
    }
    
    @keyframes lineGrow {
        to { width: 150px; }
    }
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.4);
}

.slide-content .btn {
    animation: fadeInUp 1.4s ease;
    font-size: 18px;
    padding: 15px 35px;
    border-radius: 50px;
    background: #e63946;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.slide-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.4);
    background: #d62828;
}

.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature-item p {
    font-size: 14px;
    color: var(--gray-color);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    .hero-logo img {
        height: 90px;
    }
    
    .hero-features {
        position: relative;
        padding: 30px 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Bölüm Stilleri */
.section {
    padding: 100px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.small-logo {
    height: 60px;
    transition: var(--transition);
}

.small-logo:hover {
    transform: rotate(5deg) scale(1.1);
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--gray-color);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 20px;
}

/* Hakkımızda Bölümü İyileştirmeleri */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-description p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.feature p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.feature i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-top: auto;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-cta {
    margin-top: 30px;
    text-align: left;
}

.about-cta .btn {
    padding: 12px 30px;
}

/* Hizmetler Bölümü - Yeni Tasarım */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-info {
    padding: 25px;
    position: relative;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,1));
}

.service-info:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.9));
    z-index: -1;
}

.service-info h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
}

.service-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.service-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-card .service-btn {
    margin-top: 15px;
    display: inline-block;
    padding: 8px 0;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.service-card:hover .service-btn {
    opacity: 1;
    transform: translateY(0);
}

.service-card .service-btn i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-card:hover .service-btn i {
    transform: translateX(5px);
}

/* Projeler Bölümü */
.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: var(--white-color);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Müşteri Yorumları */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    padding: 20px 0;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(231, 76, 60, 0.1);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

/* İletişim Bölümü İyileştirmeleri */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
    background-color: rgba(231, 76, 60, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.2);
    outline: none;
    background-color: var(--white-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
}

/* Referanslar Bölümü İyileştirmeleri */
.references-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.references-text {
    max-width: 800px;
    margin: 0 auto;
}

.references-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.references-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 20px auto;
    max-width: 1000px;
}

.reference-item {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 150px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f7f5f0, #e1ddd7); /* Altınsı yumuşak degrade */
    border: 2px solid #d4af37; /* Altın çerçeve */
    border-radius: 20px;
    padding: 25px;
    box-shadow: 
        0 10px 20px rgba(212, 175, 55, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 320px;
    margin: auto;
}

.logo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.05)
    );
    transform: rotate(0deg);
    animation: goldenSweep 6s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.logo-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow:
        0 18px 40px rgba(212, 175, 55, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
    border-color: #ffd700;
}

.logo-card img {
    max-width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
    transition: transform 0.4s ease;
}

.logo-card:hover img {
    transform: scale(1.03);
}

@keyframes goldenSweep {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reference-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.reference-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .references-grid {
        justify-content: center;
    }
    
    .reference-item {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .references-grid {
        justify-content: center;
    }
    
    .reference-item {
        width: 140px;
    }
}

@media (max-width: 576px) {
    .references-grid {
        justify-content: center;
    }
    
    .reference-item {
        width: 120px;
    }
}

/* Footer İyileştirmeleri */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-services h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-content h2 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .slide-content {
        padding: 30px;
        width: 85%;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .slide-content h2 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .slide-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-logo img {
        width: 100px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .slide-content {
        padding: 25px 20px;
        width: 90%;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .hero-logo img {
        width: 80px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
}

.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature-item p {
    font-size: 14px;
    color: var(--gray-color);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    .hero-logo img {
        height: 90px;
    }
    
    .hero-features {
        position: relative;
        padding: 30px 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Müşteri Yorumları */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    padding: 20px 0;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(231, 76, 60, 0.1);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

/* İletişim Bölümü İyileştirmeleri */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
    background-color: rgba(231, 76, 60, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.2);
    outline: none;
    background-color: var(--white-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
}

/* Referanslar Bölümü İyileştirmeleri */
.references-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.references-text {
    max-width: 800px;
    margin: 0 auto;
}

.references-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.references-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 20px auto;
    max-width: 1000px;
}

.reference-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 150px;
    margin: 0 auto;
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reference-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.reference-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .references-grid {
        justify-content: center;
    }
    
    .reference-item {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .references-grid {
        justify-content: center;
    }
    
    .reference-item {
        width: 140px;
    }
}

@media (max-width: 576px) {
    .references-grid {
        justify-content: center;
    }
    
    .reference-item {
        width: 120px;
    }
}

/* Footer İyileştirmeleri */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-services h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-content h2 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .slide-content {
        padding: 30px;
        width: 85%;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .slide-content h2 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .slide-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-logo img {
        width: 100px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .slide-content {
        padding: 25px 20px;
        width: 90%;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .hero-logo img {
        width: 80px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
}

.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature-item p {
    font-size: 14px;
    color: var(--gray-color);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    .hero-logo img {
        height: 90px;
    }
    
    .hero-features {
        position: relative;
        padding: 30px 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Müşteri Yorumları */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    padding: 20px 0;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(231, 76, 60, 0.1);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

/* İletişim Bölümü İyileştirmeleri */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
    background-color: rgba(231, 76, 60, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.2);
    outline: none;
    background-color: var(--white-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
}

/* Referanslar Bölümü İyileştirmeleri */
.references-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.references-text {
    max-width: 800px;
    margin: 0 auto;
}

.references-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.references-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 20px auto;
    max-width: 1000px;
}

.reference-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 150px;
    margin: 0 auto;
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reference-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.reference-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .references-grid {
        justify-content: center;
    }
    
    .reference-item {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .references-grid {
        justify-content: center;
    }
    
    .reference-item {
        width: 140px;
    }
}

@media (max-width: 576px) {
    .references-grid {
        justify-content: center;
    }
    
    .reference-item {
        width: 120px;
    }
}

/* Footer İyileştirmeleri */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-services h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-content h2 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .slide-content {
        padding: 30px;
        width: 85%;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .slide-content h2 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .slide-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-logo img {
        width: 100px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .slide-content {
        padding: 25px 20px;
        width: 90%;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .hero-logo img {
        width: 80px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
}

.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature-item p {
    font-size: 14px;
    color: var(--gray-color);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    .hero-logo img {
        height: 90px;
    }
    
    .hero-features {
        position: relative;
        padding: 30px 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Müşteri Yorumları */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    padding: 20px 0;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(231, 76, 60, 0.1);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

/* İletişim Bölümü İyileştirmeleri */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
    background-color: rgba(231, 76, 60, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.2);
    outline: none;
    background-color: var(--white-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
}

/* Referanslar Bölümü İyileştirmeleri */
.references-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.references-text {
    max-width: 800px;
    margin: 0 auto;
}

.references-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.references-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 20px auto;
    max-width: 1000px;
}

.reference-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 150px;
    margin: 0 auto;
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reference-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.reference-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .references-grid {
        justify-content: center;
    }
    
    .reference-item {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .references-grid {
        justify-content: center;
    }
    
    .reference-item {
        width: 140px;
    }
}

@media (max-width: 576px) {
    .references-grid {
        justify-content: center;
    }
    
    .reference-item {
        width: 120px;
    }
}

/* Footer İyileştirmeleri */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-services h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-content h2 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .slide-content {
        padding: 30px;
        width: 85%;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .slide-content h2 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .slide-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-logo img {
        width: 100px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
}
footer {
 background: linear-gradient(45deg, rgba(114, 113, 113, 0.8) 0%, rgba(0,0,0,0.6) 100%);
  color: #f0f0f0; /* Açık renk yazı */
  padding: 40px 0;
  font-family: 'Montserrat', sans-serif;
}

footer a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffcc00; /* Hero'daki vurgu renkleri gibi olabilir */
}

.footer-logo p {
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-links h3 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #222;
  padding-top: 15px;
}
a
{
    text-decoration: none;
    color: white;
}

body {
  font-family: Arial, sans-serif;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  max-height: 90%;
  overflow-y: auto;
}

.kategori-listesi {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.kategori {
  cursor: pointer;
  text-align: center;
  width: 180px;
}

.kategori img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ccc;
  transition: transform 0.2s;
}

.kategori img:hover {
  transform: scale(1.05);
}

.slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-top: 20px;
}

.slider img {
  height: 200px;
  border-radius: 8px;
  flex-shrink: 0;
}

#kategori-icerik h3 {
  text-align: center;
  margin-bottom: 10px;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
}
