/* ============================================
   ANATOLIA SILK ROAD - MASAUSTU STILLERI
   ============================================ */

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Dil Secici (ul/li) */
.language-selector {
    display: flex;
    gap: 5px;
    background-color: var(--light-gray);
    padding: 5px;
    border-radius: var(--border-radius);
}

.language-selector li {
    display: inline-block;
}

.language-selector li a {
    display: block;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--medium-gray);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.language-selector li a:hover,
.language-selector li.active a {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Ana Menu (ul/li) */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu {
    display: flex;
    gap: 10px;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    display: block;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.menu > li > a:hover,
.menu > li.active > a {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Alt Menu (Dropdown) */
.menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--white);
    box-shadow: 0 4px 15px var(--shadow-dark);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.menu > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background-color: var(--light-gray);
    color: var(--primary-green);
}

/* Hamburger Menu (Desktop'ta gizli) */
.menu-toggle {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.hero .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* ===== HIZMETLER SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
}

.service-card .card-image {
    height: 250px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: -40px auto 20px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px var(--shadow);
}

.service-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

/* Diger Hizmetlerimiz Butonu */
.services-more {
    text-align: center;
    margin-top: 40px;
}

/* ===== HIZMETLERIMIZ DETAY ===== */
.services-detail {
    background-color: var(--light-gray);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-detail-item {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px var(--shadow);
}

.service-detail-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

/* ===== HAKKIMIZDA ON IZLEME ===== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-dark);
}

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

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* ===== GERI BILDIRIM FORMU ===== */
.feedback-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
}

.feedback-section .section-title h2 {
    color: var(--white);
}

.feedback-section .section-title h2::after {
    background-color: var(--white);
}

.feedback-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.feedback-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feedback-form .form-label {
    color: var(--dark-gray);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-links li a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact li strong {
    color: var(--white);
}

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

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

/* Politika Linkleri */
.policy-links {
    display: flex;
    gap: 20px;
}

.policy-links li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.policy-links li a:hover {
    color: var(--white);
}

/* ===== SAYFA ICERIKLERI ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
    margin-top: 90px;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.8;
}

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

.page-content {
    padding: 60px 0;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card .card-meta {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 10px;
}

/* Iletisim Sayfasi */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

/* Hakkimizda Sayfasi */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 4px solid var(--primary-green);
}

/* ===== POPUP OZEL ===== */
.popup-content {
    animation: popupSlideIn 0.3s ease;
}

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