/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    padding-top: 0;
    margin: 0;
}
/* WhatsApp Butonu Stilleri */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 10000 !important;
}
@media(max-width:768px){
    .whatsapp-float {
        z-index: 9000 !important;
    }
    
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
    background-color: #128C7E;
}

.whatsapp-link i {
    font-size: 32px;
    color: white;
}

/* WhatsApp butonu için pulse animasyonu */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobil cihazlar için responsive ayarlar */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-link i {
        font-size: 28px;
    }
}
/* Header Üst Bilgi Çubuğu */
.header-top {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    transition: all 0.3s ease;
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #c8a97e;
    font-size: 0.8rem;
}

.phone-numbers,
.address {
    font-size: 0.85rem;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    background-color: #333;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    background-color: #c8a97e;
    transform: translateY(-2px);
}

@media (max-width: 834px) {
    .header-top {
        display: none;
    }
    .header-divider {
        display: none;
    }
}

/* İnce Çizgi */
.header-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(200, 169, 126, 0.3) 50%, transparent 100%);
}

/* Header ve Navigasyon */
header {
    position: fixed;
    top: 63px;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: all 0.4s ease;
    background: transparent;
}

header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled nav {
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

header.scrolled .logo {
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

header.scrolled .nav-links a {
    color: #333;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c8a97e;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

header.scrolled .hamburger span {
    background: #333;
}

/* Mobile Menu Styles */
/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

header.scrolled .hamburger span {
    background: #333;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1002;
    transition: left 0.4s ease;
    padding: 80px 20px 20px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    left: 0;
}

/* Mobile menu için özel nav-links stilleri */
.mobile-menu .nav-links {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
}

.mobile-menu .nav-links li {
    margin: 0 !important;
    width: 100%;
}

.mobile-menu .nav-links a {
    display: block;
    padding: 15px 10px;
    color: #333 !important;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu .nav-links a:hover,
.mobile-menu .nav-links a.active {
    color: #c8a97e !important;
    background: rgba(200, 169, 126, 0.1);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1003;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 992px) {

    /* Sadece desktop nav-links'i gizle */
    nav .nav-links:not(.mobile-menu .nav-links) {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 40px;
    }

    nav {
        padding: 15px 0;
    }

    header.scrolled nav {
        padding: 10px 0;
    }
}

/* Hero Bölümü - ANA SAYFA */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    color: white;
    overflow: hidden;
    margin-top: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 650px;
    padding: 0 20px;
    margin-top: 120px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    line-height: 1.4;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
    color: white;
    line-height: 1.6;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 25px 0;
    color: #c8a97e;
}

/* Hakkımızda Hero Bölümü */
/* Hakkımızda Hero - Hizmetlerimiz ile Aynı */
.about-hero {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 0;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

/* Hero İçeriği - Hizmetlerimiz ile Aynı */
.about-hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 800;
    animation: fadeInUp 1s ease-out;
    word-break: keep-all;
}

/* Animasyon CSS'i (eğer daha önce eklemediysen) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Genel Stiller */
section {
    padding: 80px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

p {
    line-height: 1.6;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c8a97e;
    color: #000 !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #c8a97e;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: #c8a97e !important;
    transform: translateY(-3px);
}

/* Biz Kimiz Bölümü */
.about {
    background-color: white;
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #c8a97e;
    font-weight: 600;
}

.about-text p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-text p:last-of-type {
    margin-bottom: 30px;
}

.about-images {
    flex: 1;
    position: relative;
    height: 500px;
    min-height: 400px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 8px solid white;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 65%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border: 8px solid white;
}

/* Hakkımızda İçerik Bölümü */
.about-content-section {
    padding: 100px 0;
    background-color: white;
}

.about-main-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-section:nth-child(1) {
    animation-delay: 0.1s;
}

.about-section:nth-child(2) {
    animation-delay: 0.2s;
}

.about-section:nth-child(3) {
    animation-delay: 0.3s;
}

.about-section:nth-child(4) {
    animation-delay: 0.4s;
}

.about-section:nth-child(5) {
    animation-delay: 0.5s;
}

.about-section:nth-child(6) {
    animation-delay: 0.6s;
}

.about-section:nth-child(7) {
    animation-delay: 0.7s;
}

.about-section h2 {
    font-size: 2.8rem;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.about-section h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
    border-left: 4px solid #c8a97e;
    padding-left: 15px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.about-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin: 60px 0;
}

.about-highlight h2 {
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
}

/* İstatistikler Bölümü */
.stats {
    background-color: #faf9f8;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgb(100, 68, 0);
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-item {
    padding: 0 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1rem;
    color: #ffffff;
}

/* Hizmetler Bölümü */
.services {
    background-color: #1a1a1a;
    color: white;
    padding: 100px 0;
}

.services h2,
.services h3 {
    color: white;
}

.services p {
    color: #ccc;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-content p {
    margin-bottom: 20px;
}

/* Neden Biz Bölümü */
.why-us {
    background-color: white;
    padding: 100px 0;
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Projeler Bölümü */
.projects {
    background-color: white;
    padding: 100px 0;
    position: relative;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    padding: 20px 0;
}

.projects-container {
    display: flex;
    transition: transform 0.6s ease-in-out;
    gap: 25px;
}

.project-slide {
    min-width: calc(33.333% - 17px);
    flex: 0 0 auto;
}

.project-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 300px;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover .project-img {
    transform: scale(1.05);
}

/* Slider Navigasyon */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background-color: #c8a97e;
    transform: scale(1.2);
    border-color: #b89465;
}

.slider-arrow {
    background-color: #c8a97e;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(200, 169, 126, 0.3);
}

.slider-arrow:hover {
    background-color: #b89465;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 169, 126, 0.4);
}

.slider-arrow:disabled {
    background-color: #ddd;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Tüm Projeler Butonu */
.projects-button {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #c8a97e, #b89465);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(200, 169, 126, 0.3);
    border: 2px solid transparent;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 169, 126, 0.4);
    background: linear-gradient(135deg, #b89465, #c8a97e);
    border-color: #c8a97e;
}

.view-all-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #c8a97e;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c8a97e;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll için padding ayarı */
.about-content-section {
    scroll-margin-top: 120px;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .project-slide {
        min-width: calc(50% - 13px);
    }
}

@media (max-width: 992px) {
    .header-top-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
        gap: 20px;
    }

    .social-media {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-text {
        text-align: center;
    }

    .about-images {
        width: 100%;
        height: 400px;
        margin-top: 20px;
    }

    .about-img-1 {
        width: 70%;
        height: 70%;
    }

    .about-img-2 {
        width: 60%;
        height: 60%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .project-slide {
        flex-direction: column;
        align-items: center;
    }

    .project-item {
        width: 80%;
        margin-bottom: 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 10px 0;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info span {
        justify-content: center;
    }

    .phone-numbers,
    .address {
        font-size: 0.8rem;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .phone-number {
        font-size: 1.1rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .project-item {
        width: 100%;
    }

    .about {
        padding: 70px 0;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-images {
        height: 350px;
        min-height: 300px;
    }

    .about-img-1,
    .about-img-2 {
        border-width: 5px;
    }

    .about-hero-content h1 {
        font-size: 2.8rem;
    }

    .about-hero-content p {
        font-size: 1.2rem;
    }

    .about-hero-content {
        margin-top: 120px;
    }

    .about-content-section {
        padding: 80px 0;
    }

    .about-section h2 {
        font-size: 2.2rem;
    }

    .about-section h3 {
        font-size: 1.6rem;
    }

    .about-section p {
        font-size: 1rem;
        text-align: left;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    header {
        top: 60px;
    }

    .about-content-section {
        scroll-margin-top: 100px;
    }

    .project-slide {
        min-width: calc(100% - 20px);
    }

    .project-item {
        height: 250px;
    }

    .slider-nav {
        gap: 20px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .view-all-btn {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .header-top {
        font-size: 0.8rem;
    }

    .contact-info span {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .social-media {
        gap: 10px;
    }

    .about-images {
        height: 300px;
        min-height: 250px;
    }

    .about-img-1 {
        width: 80%;
        height: 70%;
    }

    .about-img-2 {
        width: 70%;
        height: 60%;
    }

    .about-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-hero-content {
        margin-top: 100px;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .header-top {
        padding: 8px 0;
    }

    header {
        top: 56px;
    }

    .about-content-section {
        scroll-margin-top: 90px;
    }

    .project-item {
        height: 200px;
    }

    .slider-nav {
        flex-direction: column;
        gap: 20px;
    }

    .slider-arrows {
        display: flex;
        gap: 15px;
    }

    .view-all-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .header-top-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 8px;
    }

    .about-hero-content {
        margin-top: 130px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
}

/* Footer Sosyal Medya Stilleri */
.footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.footer-social-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 0;
    font-size: 0.9rem;
}

.footer-social-item:hover {
    color: #c8a97e;
    transform: translateX(3px);
}

.footer-social-item i {
    width: 28px;
    height: 28px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.footer-social-item:hover i {
    background: #c8a97e;
    transform: scale(1.05);
}

.footer-social-item span {
    font-size: 0.85rem;
}

/* Footer Genel Düzenlemeler */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #c8a97e;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
    }

    .footer-social {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .footer-social-item {
        padding: 5px 0;
    }

    .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-social {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        justify-items: center;
    }

    .footer-social-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .footer-social-item i {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }

    .footer-social-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-social {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Hizmetlerimiz Sayfası Özel Stilleri */
/* ==========================
   Hizmetlerimiz (Services) Sayfası
   ========================== */

/* === Hero Bölümü === */
.services-hero {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 0;
}

.services-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

/* Hero İçeriği */
.services-hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    /* yatay ortala */
    padding: 0 20px;
    /* kenar boşluğu */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* içeriği yatayda ortala */
    text-align: center;
    /* metinleri ortala */
}

.services-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 800;
    animation: fadeInUp 1s ease-out;
    word-break: keep-all;
}

.services-hero-content p {
    font-size: clamp(1rem, 1.6vw, 1.4rem);
    margin: 0;
    max-width: 90%;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* === İçerik Bölümü === */
.servicess-content-section {
    padding: 100px 0;
    background-color: #fff;
}

.servicess-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.servicess-intro h2 {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.servicess-intro p {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === Grid Düzeni === */
.servicess-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 0 20px;
}

.servicess-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.servicess-item:nth-child(1) {
    animation-delay: 0.1s;
}

.servicess-item:nth-child(2) {
    animation-delay: 0.2s;
}

.servicess-item:nth-child(3) {
    animation-delay: 0.3s;
}

.servicess-item:nth-child(4) {
    animation-delay: 0.4s;
}

.servicess-item:nth-child(5) {
    animation-delay: 0.5s;
}

.servicess-item:nth-child(6) {
    animation-delay: 0.6s;
}

.servicess-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.servicess-content {
    padding: 30px;
}

.servicess-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.servicess-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

/* === Animasyon === */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Responsive Düzenler === */
@media (max-width: 1200px) {
    .services-hero-content h1 {
        font-size: 3rem;
    }

    .services-hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .servicess-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .servicess-content-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 40vh;
    }

    .services-hero-content h1 {
        font-size: 2.4rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }

    .servicess-intro h2 {
        font-size: 2.2rem;
    }

    .servicess-intro p {
        font-size: 1.1rem;
    }

    .servicess-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .servicess-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        height: 35vh;
    }

    .services-hero-content h1 {
        font-size: 1.9rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .servicess-intro h2 {
        font-size: 1.8rem;
    }
}


/* === Animasyon === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================
   Gizlilik Politikası Özel Stilleri
   ========================== */
.privacy-hero {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 0;
}

.privacy-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.privacy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

/* Hero İçeriği - Hizmetlerimiz ile Aynı */
.privacy-hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.privacy-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 800;
    animation: fadeInUp 1s ease-out;
    word-break: keep-all;
}

/* Animasyon için gerekli CSS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gizlilik İçerik */
.privacy-content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.privacy-header p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content {
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #c8a97e;
}

.privacy-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section h3 .section-number {
    background: #c8a97e;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.privacy-section p,
.privacy-section ul,
.privacy-section li {
    color: #555;
    font-size: 1.1rem;
}

.privacy-contact-info {
    /* mevcut arka plan/padding korunuyor, responsive davranış eklendi */
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.privacy-contact-info h4 {
    color: #000000;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.privacy-contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.privacy-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgb(0, 0, 0);
}

/* Mobilde iletişim kutusunun içerikleri yatay taşmasın, tek sütuna düşsün */
@media (max-width: 576px) {
    .privacy-contact-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .privacy-contact-item {
        justify-content: flex-start;
        width: 100%;
    }
}

/* Responsive gizlilik */
@media (max-width: 768px) {
    .privacy-hero-content h1 {
        font-size: 2.5rem;
        margin-top: 80px;
    }

    .privacy-content-section {
        padding: 60px 20px;
    }

    .privacy-container {
        padding: 40px 30px;
    }

    .privacy-header h2 {
        font-size: 2rem;
    }

    .privacy-section {
        padding: 25px 20px;
    }
}

/* ==========================
   İletişim / Contact Özel Stilleri (merkezi)
   ========================== */
/* Temel dark/kart stilleri contact sayfasından alındı ve optimize edildi */
.contact-wrapper {
    background-color: #232323;
    padding: 100px 0;
}

.contact-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
    justify-items: center;
}

.contact-info-cards {
    flex: 1;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-box {
    flex: 1;
    min-width: 340px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}

.contact-form-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(200, 169, 126, 0.15);
}

.contact-form-box h2,
.contact-map-box h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-form-box p,
.contact-map-box p {
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* Form */
.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-form-box label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: .95rem;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
    outline: none;
    background-color: #f9f9f9;
    transition: all .3s;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: #c8a97e;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

.contact-form-box textarea {
    resize: vertical;
    min-height: 120px;
}

.form-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: auto;
}

.contact-form-box button {
    background: #c8a97e;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 1rem;
}

.contact-form-box button:hover {
    background: #b99665;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 169, 126, 0.3);
}

.contact-form-box .btn-outline {
    background: transparent;
    border: 2px solid #c8a97e;
    color: #c8a97e;
}

.contact-form-box .btn-outline:hover {
    background: rgba(200, 169, 126, 0.1);
}

.contact-map-box {
    background: #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    transition: transform .3s ease, box-shadow .3s ease;
    width: 100%;
}

.contact-map-box iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

/* Contact cards */
.contact-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    padding: 30px 25px;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: 4px solid #c8a97e;
    flex: 1;
    justify-content: center;
    min-height: 220px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 169, 126, 0.2);
}

.contact-card i {
    font-size: 2rem;
    color: #c8a97e;
    margin-bottom: 15px;
    background: rgba(200, 169, 126, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.3rem;
}

.contact-card p {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color .3s;
}

.contact-card p a:hover {
    color: #c8a97e;
}

.contact-card span {
    display: block;
    color: #777;
    font-size: .9rem;
    margin-top: 6px;
}

/* Form feedback */
#form-feedback {
    margin-top: 10px;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

/* Responsive küçük ekranlar için contact */
@media (max-width: 992px) {
    .contact-top {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-form-box,
    .contact-info-cards {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 60px 0;
    }

    .contact-card {
        padding: 25px 20px;
        min-height: 200px;
    }

    .contact-form-box {
        padding: 30px 25px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .contact-form-box button {
        width: 100%;
        justify-content: center;
    }

    .contact-card {
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 20px 15px;
        min-height: 160px;
    }

    .contact-card i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }

    .contact-card span {
        font-size: 0.8rem;
    }
}


.high-contrast-text {
    color: #333333 !important;
    font-weight: 600;
}

.high-contrast-footer {
    background-color: #222222 !important;
    color: #ffffff !important;
}

.high-contrast-footer p {
    color: #ffffff !important;
    margin: 0;
    padding: 20px 0;
}

/* Odak stilleri - erişilebilirlik için */
button:focus,
a:focus {
    outline: 2px solid #FF6B00;
    outline-offset: 2px;
}
/* Dropdown Konteyner */
.dropdown {
    position: relative;
}

/* Dropdown Toggle Butonu */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Menü */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Linkleri */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    padding-left: 25px;
}

/* Mobile Dropdown */
@media (max-width: 991px) {
    .dropdown {
        display: none;
    }
    
    .mobile-dropdown {
        display: block;
    }
    
    .mobile-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding-left: 20px;
    }
    
    .mobile-dropdown-menu.active {
        max-height: 500px;
    }
}

@media (min-width: 992px) {
    .mobile-dropdown {
        display: none;
    }
}
.footer-contact p,
.footer-bottom p{
    line-height: 1.6;
    color: #ccc;
    
}