/* Genel Reset ve Root Değişkenlar */
:root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #f8f9fa;
    --bg-card: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-dark: #2c2c2c;
    --accent-primary: #d4621a;
    --accent-hover: #b8521a;
    --accent-light: #e6722a;
    --accent-subtle: #3d2a1a;
    --border-color: #404040;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Arka Plan Video Stilleri */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

/* Navbar Stilleri */
.navbar {
    background-color: var(--bg-primary);
    padding: 0;
    position: fixed;
    top: 0;
    width: 55%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    border-radius: 0 0 8px 8px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    height: 70px;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 100%;
    position: relative;
}

/* Logo Stilleri */
.nav-logo {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
    transform: scale(1.2);
    transform-origin: left center;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

/* Menü Stilleri */
.nav-menu-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin: 0 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px; /* dokunmatik kolaylığı */
}

.nav-link:hover {
    color: var(--accent-primary);
    background-color: var(--accent-subtle);
}

.nav-link.active {
    color: var(--accent-primary);
    background-color: rgba(212, 98, 26, 0.15);
}

/* Alt çizgi efekti */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-hover);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Dropdown Menu Stilleri */
.dropdown {
    position: relative;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -40px;
    z-index: -1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(26, 26, 26, 0.95);
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    margin-top: 5px; /* önce 20px'ti - şimdi 5px */
    transform: scaleY(0); /* açılış kapanış animasyonu başlangıcı */
    transform-origin: top;
    transition: opacity .25s ease, transform .25s ease;
    border-radius: 0 0 8px 8px; /* sadece alt köşeler */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color); /* kenarlık eklendi */
    z-index: 1000;
}

.dropdown-menu::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1); /* yukarıdan aşağı açılır */
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background-color: var(--accent-subtle);
    color: var(--accent-primary);
    padding-left: 25px;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-link:hover::before {
    transform: scaleY(1);
}

/* Dropdown okunu kaldır */
.dropdown .nav-link::after {
    display: none !important;
}

/* Hamburger Menü (Mobil) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #E6E1D8;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Video Hero Banner */
.video-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.5);
    z-index: 2;
}

.video-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.7));
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.9s both;
    margin-top: -2rem;
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 10;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    color: var(--text-primary);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 98, 26, 0.3);
    margin-top: 2rem;
    text-decoration: none;
    text-align: center;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 98, 26, 0.4);
}

/* Footer */
.footer {
    background: rgba(26, 26, 26, 0.95);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: var(--font-heading);
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 95%;
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .brand-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    /* Navbar Mobile */
    .navbar {
        padding: 10px 0;
        height: 60px;
    }
    
    .nav-container {
        justify-content: space-between;
        padding: 0 15px;
    }
    
    .nav-logo .logo-img {
        height: 90px;
        transform: scale(1.2);
        top: 15px;
        left: 15px;
    }
    
    .nav-menu-wrapper {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 1000;
        margin: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2rem;
    }
    
    .nav-menu-wrapper.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 0;
        height: 100%;
        overflow-y: auto;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        color: var(--text-primary);
        text-align: left;
    }
    
    .nav-link:hover {
        color: var(--accent-primary);
        background: rgba(255, 102, 0, 0.1);
        padding-left: 10px;
    }
    
    /* Dropdown Mobile */
    .dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        max-height: none;
        transform: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-link {
        padding: 12px 20px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 102, 0, 0.2);
        margin: 0;
        color: var(--text-primary);
    }
    
    /* Hamburger Menu */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .bar {
        width: 25px;
        height: 3px;
        background-color: var(--text-primary);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero Section Mobile */
    .video-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .brand-title {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }
    
    .hero-logo {
        max-width: 280px;
        margin-top: 1.5rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .hero-tagline {
        font-size: 1rem;
        max-width: 90%;
        margin-top: -0.6rem;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    /* Extra Small Mobile */
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        height: 55px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo .logo-img {
        height: 70px;
        transform: scale(1);
        top: 10px;
        left: 10px;
    }
    
    .nav-menu-wrapper {
        top: 55px;
        height: calc(100vh - 55px);
    }
    
    .brand-title {
        font-size: 2.2rem;
    }
    
    .hero-logo {
        max-width: 240px;
        margin-top: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        margin-top: -0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .cta-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
}

/* ============= İLETİŞİM SAYFASI STİLLERİ ============= */

/* İletişim Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8));
    padding: 120px 0 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* İletişim Content */
.contact-content {
    padding: 120px 0 60px 0;
    background: var(--bg-primary);
    min-height: 80vh;
}

.contact-info-section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-section .section-title {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* İletişim Bilgileri Kartı */
.contact-info-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: left;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 25px rgba(212, 98, 26, 0.1);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(212, 98, 26, 0.3);
}

.info-content {
    flex: 1;
}

.info-content h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Sosyal Medya */
.social-media {
    text-align: center;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.social-media h3 {
    color: var(--accent-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    transition: left 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 98, 26, 0.3);
}

/* Harita Bölümü */
.map-section {
    padding: 60px 0;
    background: rgba(45, 45, 45, 0.3);
}

.map-section .section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--border-color);
    height: 450px;
    background: var(--bg-primary);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: sepia(10%) hue-rotate(15deg) saturate(80%);
}

/* İletişim Sayfası Responsive */
@media screen and (max-width: 768px) {
    .contact-content {
        padding: 100px 0 40px 0;
    }
    
    .contact-info-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem;
        margin: 0 1rem 2rem 1rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .info-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .info-content p {
        font-size: 0.95rem;
    }
    
    .social-media {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .map-section {
        padding: 40px 0;
    }
    
    .map-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .map-container {
        height: 300px;
        margin: 0 1rem;
        border-radius: 15px;
    }
    
    /* Logo mobile boyutu */
    .logo-img {
        height: 60px;
        transform: scale(1);
    }
}

@media screen and (max-width: 480px) {
    .contact-content {
        padding: 80px 0 30px 0;
    }
    
    .contact-info-section .section-title {
        font-size: 1.8rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .info-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .info-content h3 {
        font-size: 1.1rem;
    }
    
    .info-content p {
        font-size: 0.9rem;
    }
    
    .social-media {
        padding: 1.5rem;
    }
    
    .social-media h3 {
        font-size: 1.3rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    /* Logo extra small mobile */
    .logo-img {
        height: 50px;
        transform: scale(0.9);
    }
}

/* ===== MOBILE THEME HARMONIZATION OVERRIDES ===== */
@media screen and (max-width: 768px) {
    .navbar {
        height: 70px; /* önce 60 */
    }
    .nav-logo {
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        text-align: center;
    }
    .nav-logo .logo-img {
        height: 100px !important; /* önce 90 */
        transform: scale(1.15) !important;
    }
    .nav-menu-wrapper {
        top: 70px; /* navbar yüksekliği ile senkron */
        background: rgba(0,0,0,0.96) !important;
        border-top: 1px solid rgba(255,102,0,0.25);
        backdrop-filter: blur(14px);
    }
    .nav-item {
        border-bottom: 1px solid rgba(255,102,0,0.15) !important;
    }
    .nav-link {
        color: var(--text-primary) !important;
        padding: 15px 0 !important;
        background: transparent !important;
    }
    .nav-link:hover {
        color: var(--accent-primary) !important;
        background: rgba(255,102,0,0.08) !important;
        padding-left: 0 !important;
    }
    .nav-item.dropdown.open > .nav-link {
        background: rgba(255,102,0,0.12) !important;
    }
    .dropdown-menu {
        background: rgba(34,34,34,0.40) !important;
    }
    .dropdown-link {
        color: var(--text-primary) !important;
        border-bottom: 1px solid rgba(255,102,0,0.12) !important;
    }
    .dropdown-link:hover {
        background: rgba(255,102,0,0.15) !important;
        color: var(--accent-primary) !important;
    }
    .hamburger .bar {
        background: var(--text-primary) !important;
    }
    .hamburger:hover .bar {
        background: var(--accent-primary) !important;
    }
    .hamburger.active .bar:nth-child(1),
    .hamburger.active .bar:nth-child(3) {
        background: var(--accent-primary) !important;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        height: 65px; /* önce 55 */
    }
    .nav-menu-wrapper {
        top: 65px;
    }
    .nav-logo .logo-img {
        height: 90px !important;
        transform: scale(1.1) !important;
    }
}

/* İsteğe bağlı: büyük ekran geçişinde logo hızlı sıçramasın */
@media screen and (min-width: 769px) {
    .nav-logo .logo-img {
        transition: transform .3s ease, height .3s ease;
    }
}

/* ============= HİZMET SAYFALARI CSS STİLLERİ ============= */

/* Service Page General Styles */
.service-page {
    background: var(--bg-primary);
    padding-top: 0;
}

/* Service Hero Section */
.service-hero {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(34, 34, 34, 0.8)),
        url('assets/backgrounds/service-hero-bg.jpg') center/cover no-repeat;
    background-color: var(--bg-primary);
    padding: 120px 0 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(34, 34, 34, 0.6));
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.service-hero-content p {
    font-size: 1.3rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Service Info Section */
.service-info {
    padding: 80px 0;
    background: var(--bg-primary);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-text h2 {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.service-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-image {
    background: rgba(255, 102, 0, 0.1);
    border: 2px dashed var(--accent-primary);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: var(--accent-primary);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-image i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-image p {
    font-size: 1.1rem;
    color: var(--accent-primary);
    margin: 0;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
    border-color: var(--accent-primary);
}

.feature-icon {
    color: var(--accent-primary);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Specifications Section */
.specifications-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.specifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spec-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.15);
}

.spec-card h4 {
    color: var(--accent-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.spec-card ul {
    list-style: none;
    padding: 0;
}

.spec-card li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
    display: flex;
    align-items: center;
}

.spec-card li:last-child {
    border-bottom: none;
}

.spec-card li i {
    color: var(--accent-primary);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

/* Process Steps Section */
.process-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 102, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.step-number {
    background: var(--accent-primary);
    color: var(--bg-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.step-card h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(34, 34, 34, 0.3)),
        var(--bg-primary);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(201, 166, 107, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.4);
}

.cta-secondary {
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-secondary:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

/* Service Page Responsive Design */
@media screen and (max-width: 768px) {
    .service-hero {
        height: 50vh;
        min-height: 300px;
        padding: 60px 0;
    }
    
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-hero-content p {
        font-size: 1rem;
    }
    
    .service-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-text,
    .service-image {
        flex: none;
        width: 100%;
    }
    
    .service-text h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px;
        text-align: center;
    }
    
    .specifications-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-card {
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    /* Product Grid Mobile */
    .product-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .product-info h3 {
        font-size: 1.3rem;
    }
    
    .product-description {
        font-size: 0.95rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}

@media screen and (max-width: 480px) {
    .service-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .service-text h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .spec-card {
        padding: 20px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
}

/* ===== PRODUCT CATALOG STYLES ===== */

/* Product Grid Layout */
.product-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Product Card Styles */
.product-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-primary) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(212, 98, 26, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--accent-primary);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-hover) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

/* Product Image */
.product-image {
    height: 220px;
    background: linear-gradient(135deg, var(--border-color) 0%, var(--bg-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.1) 100%);
    pointer-events: none;
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #555555 0%, #444444 100%);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--accent-primary);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.product-card:hover .image-placeholder i {
    font-size: 4.5rem;
    opacity: 1;
    transform: scale(1.1);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
    z-index: 2;
}

/* Product Info */
.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Product Features */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2) 0%, rgba(229, 90, 0, 0.2) 100%);
    color: var(--accent-primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
}

.product-card:hover .feature-tag {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.3) 0%, rgba(229, 90, 0, 0.3) 100%);
    border-color: rgba(255, 102, 0, 0.5);
    transform: translateY(-2px);
}

/* View Details Button */
.view-details-btn {
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    width: 100%;
}

.view-details-btn:hover {
    background: linear-gradient(135deg, #e55a00 0%, #cc5100 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.view-details-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.view-details-btn:hover i {
    transform: scale(1.1);
}

/* Product Catalog Section */
.product-catalog {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #111111 100%);
}

.catalog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.catalog-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.catalog-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .product-grid, .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .product-card {
        margin: 0 1rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .catalog-header h2 {
        font-size: 2rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .product-grid, .products-grid {
        margin-top: 1.5rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .catalog-header h2 {
        font-size: 1.8rem;
    }
    
    .product-image {
        height: 160px;
    }
}

/* Lightbox Stilleri */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex !important;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-title {
    color: white;
    font-size: 1.5rem;
    margin-top: 1rem;
    font-family: var(--font-heading);
}

.lightbox-description {
    color: #ccc;
    font-size: 1rem;
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Lightbox animasyonları */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive lightbox */
@media screen and (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 1.5rem;
    }
    
    .lightbox-title {
        font-size: 1.2rem;
    }
    
    .lightbox-description {
        font-size: 0.9rem;
    }
}

/* Ana sayfa hariç diğer sayfalarda dropdown okunu gizle - KALDIR */
/* body:not(.home-page) .dropdown .nav-link::after {
    display: none !important;
} */

/* Tüm sayfalarda dropdown okunu gizle - DOĞRU KURAL */
.dropdown .nav-link::after {
    display: none !important;
}

.dropdown::after {
    display: none !important;
}

/* Dropdown icon sınıfını da gizle */
.dropdown-icon {
    display: none !important;
}

.nav-item.dropdown .dropdown-icon {
    display: none !important;
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(34, 34, 34, 0.75)),
        url('assets/backgrounds/about-hero-bg.jpg') center/cover no-repeat;
    padding: 120px 0 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.about-hero-content p {
    font-size: 1.3rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Hikayemiz Bölümü */
.our-story {
    padding: 80px 0;
    background: var(--bg-primary);
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    background: rgba(255, 102, 0, 0.1);
    border: 2px dashed var(--accent-primary);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: var(--accent-primary);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.1rem;
    color: var(--accent-primary);
    margin: 0;
}

/* Değerlerimiz Bölümü */
.values-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
    border-color: var(--accent-primary);
}

.value-icon {
    color: var(--accent-primary);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Ekibimiz Bölümü */
.team-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
    max-width: 350px;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
    border-color: var(--accent-primary);
}

.member-photo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 102, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.placeholder-icon {
    color: var(--accent-primary);
    opacity: 0.8;
}

.team-member h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-title {
    color: var(--accent-primary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Neden Biz Bölümü */
.why-us-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.why-us-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
}

.why-us-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    width: 100%;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    background: rgba(0, 0, 0, 0.8);
}

.why-item i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    min-width: 20px;
}

.why-item span {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
}

/* Hakkımızda Sayfası Responsive */
@media screen and (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 300px;
        padding: 60px 0;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
    
    .our-story {
        padding: 50px 0;
    }
    
    .story-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .story-text,
    .image-placeholder {
        flex: none;
        width: 100%;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card {
        padding: 25px;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .why-us-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .why-us-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .story-text h2 {
        font-size: 1.8rem;
    }
    
    .story-text p {
        font-size: 0.95rem;
    }
    
    .value-card {
        padding: 20px;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
    }
    
    .why-item {
        padding: 15px;
    }
    
    .why-item span {
        font-size: 0.95rem;
    }
}

/* ===== FINAL MOBILE NAV OVERRIDES (MERKEZ LOGO + GİZLİ MENÜ) ===== */
@media (max-width:768px){
    .navbar {
        width:100% !important;
        left:0 !important;
        transform:none !important;
        border-radius:0 !important;
        height:80px !important;
        padding:0 !important;
    }
    .nav-container {
        justify-content:center !important;
        padding:0 55px !important; /* sağa hamburger boşluğu */
        height:100% !important;
    }
    .nav-logo {
        position:relative !important;
        left:auto !important;
        top:auto !important;
        transform:none !important;
        margin:0 auto;
        height:100%;
        display:flex;
        align-items:center;
    }
    .nav-logo .logo-img {
        height:115px !important;
        transform:none !important;
        filter:drop-shadow(0 2px 4px rgba(0,0,0,.35));
    }
    /* Hamburger sağda */
    .hamburger {
        position:absolute;
        right:18px;
        top:50%;
        transform:translateY(-50%);
        display:flex !important;
        z-index:1100;
    }
    /* Menü: solda sabit görünme sorununu kaldır – tamamen saydam kapalı */
    .nav-menu-wrapper {
        position:fixed !important;
        top:80px !important;
        left:0 !important;
        width:100% !important;
        height:calc(100vh - 80px) !important;
        background:rgba(26,26,26,0.98) !important;
        backdrop-filter:blur(14px);
        -webkit-backdrop-filter:blur(14px);
        opacity:0;
        pointer-events:none;
        transition:opacity .3s ease;
        overflow-y:auto;
        padding-bottom:2.5rem;
        border-top:2px solid rgba(212,98,26,0.3);
    }
    .nav-menu-wrapper.active {
        opacity:1;
        pointer-events:auto;
    }
    /* Eski kaydırmalı left animasyonunu etkisiz bırak */
    .nav-menu-wrapper,
    .nav-menu-wrapper.active {
        left:0 !important;
    }
    /* Menü içi elemanlar */
    .nav-menu {
        flex-direction:column !important;
        gap:0 !important;
        width:100%;
        padding:10px 28px 0 28px !important;
    }
    .nav-item {
        width:100%;
        border-bottom:1px solid rgba(201,166,107,0.15) !important;
    }
    .nav-item:last-child { border-bottom:none; }
    .nav-link {
        width:100%;
        display:block;
        padding:16px 0 !important;
        font-size:1.05rem;
        text-align:center;
        color:var(--text-primary) !important;
        background:transparent !important;
    }
    .nav-link:hover {
        background:rgba(201,166,107,0.08) !important;
        color:var(--accent-primary) !important;
    }
    /* Dropdown mobil aç-kapa */
    .nav-item.dropdown.open > .nav-link {
        background:rgba(201,166,107,0.12) !important;
    }
    .dropdown-menu {
        position:static !important;
        background:rgba(26,26,26,0.85) !important;
        box-shadow:none !important;
        margin:0 0 5px 0 !important;
        transform:none !important;
        opacity:0 !important;
        visibility:hidden !important;
        border-radius:8px;
        overflow:hidden;
        max-height:0;
        transition:all .3s ease;
        border-left:3px solid rgba(212,98,26,0.6) !important;
    }
    
    .nav-item.dropdown.open .dropdown-menu {
        opacity:1 !important;
        visibility:visible !important;
        max-height:300px;
    }
    
    .dropdown-link {
        color: var(--text-primary) !important;
        border-bottom: 1px solid rgba(201,166,107,0.12) !important;
        padding: 12px 20px !important;
        display: block !important;
        text-decoration: none !important;
        transition: all 0.3s ease;
    }
    
    .dropdown-link:hover {
        background: rgba(201,166,107,0.15) !important;
        color: var(--accent-primary) !important;
    }
}

/* Daha küçük ekran ince ayar */
@media (max-width:480px){
    .navbar { height:75px !important; }
    .nav-menu-wrapper { top:75px !important; height:calc(100vh - 75px) !important; }
    .nav-logo .logo-img { height:100px !important; }
    .nav-link { padding:14px 0 !important; }
}

/* Geçişler pürüzsüz */
@media (max-width:768px){
    .navbar, .nav-logo .logo-img {
        transition:height .3s ease, transform .3s ease;
    }
}

/* === DROPDOWN POSITION TWEAK (DESKTOP) === */
@media (min-width:769px){
    .dropdown-menu{
        margin-top: 12px !important; /* önce 11px'ti - daha da yukarı */
    }
}