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

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --light-blue: #60a5fa;
    --primary-green: #059669;
    --secondary-green: #10b981;
    --light-green: #34d399;
    --dark: #1f2937;
    --light: #f9fafb;
    --white: #ffffff;
    --gray: #6b7280;
    --border: #e5e7eb;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

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

/* Header */
.top-bar {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info a,
.contact-info span {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links a {
    color: var(--white);
    font-size: 18px;
    margin-left: 15px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

.main-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-img {
    height: 80px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    transition: transform 0.3s;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-green);
}

.hamburger {
    display: none;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border: 2px solid var(--primary-blue);
    border-radius: 5px;
    transition: all 0.3s;
}

.hamburger:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.hamburger i {
    font-size: 20px;
    color: var(--primary-blue);
    transition: color 0.3s;
}

.hamburger:hover i {
    color: var(--white);
}

.hamburger .menu-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-blue);
    text-transform: uppercase;
    transition: color 0.3s;
}

.hamburger:hover .menu-text {
    color: var(--white);
}

.hamburger span {
    display: none;
}

.menu-close-wrapper {
    display: none;
}

.menu-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 20px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.menu-close:hover {
    background: var(--primary-green);
    transform: rotate(90deg);
}

/* WhatsApp ve Arama Butonları */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.search-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary-blue);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

/* Arama Modal */
.search-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.search-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

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

.close-search:hover {
    color: var(--dark);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 5px;
    font-size: 16px;
}

.search-form input:focus {
    outline: none;
    border-color: var(--secondary-blue);
}

.search-form button {
    padding: 15px 25px;
    background: var(--secondary-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

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

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.hero-prev,
.hero-next {
    background: rgba(255,255,255,0.3);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255,255,255,0.5);
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--white);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
}

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

.btn-secondary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
}

/* Hizmetler Özet */
.services-preview {
    padding: 80px 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-blue);
}

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
}

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

/* Farkımız Bölümü */
.farkimiz-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
}

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

.farkimiz-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.farkimiz-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.farkimiz-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.farkimiz-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--light-green);
}

.farkimiz-item h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* Bölgeler */
.bolgeler-section {
    padding: 80px 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 18px;
}

.bolgeler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.bolge-item {
    padding: 15px;
    background: var(--light);
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.bolge-item:hover {
    background: var(--secondary-blue);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--primary-green);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

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

.cta-buttons .btn {
    min-width: 200px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

/* Page Content */
.page-content {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-box {
    background: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-box h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 28px;
}

.content-box h3 {
    color: var(--primary-green);
    margin: 25px 0 15px;
    font-size: 22px;
}

.content-box p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 10px;
}

.team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.team-member h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    color: var(--gray);
}

.feature-list li i {
    color: var(--primary-green);
    margin-right: 10px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--light-blue), var(--light-green));
    color: var(--white);
}

.highlight-box h2,
.highlight-box p {
    color: var(--white);
}

.contact-info-box {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
}

/* Hizmetler Detay */
.services-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    align-items: flex-start;
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
}

.service-detail-image {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-detail-item:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-content h2 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 28px;
}

.service-detail-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-detail-content ul {
    list-style: none;
    margin-top: 20px;
}

.service-detail-content ul li {
    padding: 8px 0;
    color: var(--gray);
    padding-left: 25px;
    position: relative;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.service-keywords {
    margin-top: 60px;
    padding: 40px;
    background: var(--light);
    border-radius: 10px;
}

.service-keywords h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keywords-list span {
    padding: 8px 15px;
    background: var(--white);
    border-radius: 20px;
    color: var(--primary-blue);
    font-size: 14px;
    border: 2px solid var(--border);
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-content h2 {
    margin-bottom: 15px;
}

.blog-content h2 {
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title-link {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.blog-title-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.blog-excerpt {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    min-height: 80px;
}

.blog-link-wrapper {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-green));
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 14px;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.read-more-btn i {
    transition: transform 0.3s;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

.blog-detail {
    max-width: 900px;
    margin: 0 auto;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    line-height: 1.8;
    color: var(--gray);
    font-size: 16px;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    color: var(--primary-blue);
    margin: 25px 0 15px;
}

.blog-detail-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border);
    text-align: center;
}

.blog-detail-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-link {
    padding: 12px 18px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 44px;
    justify-content: center;
}

.page-link:hover {
    background: var(--secondary-blue);
    color: var(--white);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.page-link.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.3);
}

.no-content {
    text-align: center;
    padding: 60px 20px;
}

.no-content i {
    font-size: 64px;
    color: var(--gray);
    margin-bottom: 20px;
}

.no-content p {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 30px;
}

/* İletişim */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-section h2,
.contact-map-section h2 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 28px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light);
    border-radius: 10px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--gray);
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--secondary-blue);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-map-section {
    display: flex;
    flex-direction: column;
}

.google-map {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.map-info p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 16px;
}

.map-info p:last-child {
    margin-bottom: 0;
}

.map-info i {
    color: var(--primary-green);
    margin-right: 8px;
}

.map-info strong {
    color: var(--primary-blue);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
}

.form-group label span {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.search-results {
    margin-bottom: 40px;
}

.result-count {
    color: var(--gray);
    margin-bottom: 30px;
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-col h3 {
    color: var(--light-green);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--light-green);
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--light-green);
    margin-right: 8px;
}

.ilce-list {
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 65px;
        max-width: 250px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 60px 0 20px;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .menu-close-wrapper {
        display: block;
        position: relative;
        width: 100%;
        text-align: right;
        padding: 0 20px;
        margin-bottom: 10px;
    }

    .menu-close {
        display: flex;
        position: static;
        margin-left: auto;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .services-grid,
    .farkimiz-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .google-map {
        height: 350px;
    }

    .service-detail-item,
    .service-detail-item:nth-child(even) {
        flex-direction: column;
    }
    
    .service-detail-image {
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .bolgeler-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .whatsapp-btn,
    .search-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .search-btn {
        bottom: 90px;
    }
}
