/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a3a6c;
}

h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff6b00;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    background: #ff6b00;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #e55e00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

/* Header Stilleri */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 58, 108, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.logo span {
    color: #ff6b00;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b00;
    transition: width 0.3s;
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a:hover {
    color: #ff6b00;
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide:first-child {
    background-image: url('images/resim1.jpg');
}

.slide:nth-child(2) {
    background-image: url('images/resim2.jpg');
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
    color: white;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 30px;
    max-width: 800px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

/* WhatsApp Butonu */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-btn img {
    width: 36px;
    height: 36px;
}

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

.whatsapp-btn:active, .phone-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Tooltip stilleri */
.whatsapp-btn::after, .phone-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.whatsapp-btn:hover::after, .phone-btn:hover::after {
    opacity: 1;
    margin-bottom: 10px;
}

/* Telefon Butonu */
.phone-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #ff6b00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.phone-btn img {
    width: 30px;
    height: 30px;
}

.phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Hizmetler Bölümü */
.services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 65%, rgba(255,107,0,0.05) 65%),
        linear-gradient(-45deg, transparent 65%, rgba(26,58,108,0.05) 65%);
    background-size: 60px 60px;
    opacity: 0.5;
    z-index: 0;
    animation: bgAnimation 20s linear infinite;
}

@keyframes bgAnimation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-top: 15px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #ff6b00;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    border-top: 4px solid #ff6b00;
    margin: 15px 0;
}

.service-card:hover {
    transform: translateY(-5px); /* Önceki -10px değerini düşürebilirsiniz */
    box-shadow: 0 10px 25px rgba(0,0,0,0.12); /* Daha hafif bir gölge */
}

.service-icon {
    font-size: 3.5rem;
    color: #ff6b00;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #1a3a6c;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a3a6c;
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #ff6b00;
    transition: all 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
    background: #1a3a6c;
}

/* Eski buton stillerini kaldırın veya aşağıdaki gibi düzenleyin */
.service-cta, .service-btn {
    display: none; /* Butonları tamamen kaldırmak için */
}

/* Ayrıca kart hover efektlerinde butonla ilgili kısımları kaldırabilirsiniz */
.service-card:hover {
    transform: translateY(-5px); /* Önceki -10px değerini düşürebilirsiniz */
    box-shadow: 0 10px 25px rgba(0,0,0,0.12); /* Daha hafif bir gölge */
}

/* Hizmet kartı vurgulama animasyonu */
@keyframes highlightService {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
}

.service-card.highlighted {
    animation: highlightService 1.5s ease;
    border-top: 4px solid #1a3a6c;
    position: relative;
    z-index: 10;
}

.service-card.highlighted::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.5);
    pointer-events: none;
    animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/* Hakkımızda Bölümü */
.about {
    background: #f0f4f8;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.about-text strong {
    color: #1a3a6c;
    font-weight: 700;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    aspect-ratio: 4/3; /* İstediğiniz oranı ayarlayabilirsiniz (16/9, 1/1 vb.) */
    max-height: 500px; /* Maksimum yükseklik */
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* İletişim Bölümü - YENİ TASARIM */
.contact {
    background: linear-gradient(135deg, #1a3a6c 0%, #2c5282 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' opacity='0.05'%3E%3Cpolygon fill='white' points='0,1000 1000,0 1000,1000'/%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.06;
    pointer-events: none;
}

.contact h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.contact h2:after {
    background: #ff6b00;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.6s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.contact-icon {
    font-size: 2.5rem;
    color: #ff6b00;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.08);
    color: #ff8c42;
}

.contact-details h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.contact-details p {
    margin-bottom: 6px;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.95);
}

.contact-details span {
    color: #ff6b00;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-details a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ff6b00;
}

/* Harita kapsayıcısı - yeni görünüm */
.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
    margin-top: 30px;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.map-header {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c42 100%);
    color: white;
    padding: 18px 24px;
    text-align: center;
}

.map-header h3 {
    color: white;
    margin-bottom: 6px;
    font-size: 1.3rem;
}

.map-header p {
    margin: 0;
    opacity: 0.95;
    font-size: 0.95rem;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

/* Footer - YENİ TASARIM */
footer {
    background: linear-gradient(135deg, #0d1f3d 0%, #1a3a6c 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 40px 0 20px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' opacity='0.03'%3E%3Ccircle fill='white' cx='200' cy='200' r='150'/%3E%3Ccircle fill='white' cx='700' cy='700' r='200'/%3E%3Ccircle fill='white' cx='800' cy='300' r='100'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 50px 0 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
    flex: 1;
    min-width: 260px;
}

.footer-brand h3 {
    color: #ff6b00;
    font-size: 1.8rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-brand h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff6b00;
}

.footer-brand p {
    margin-bottom: 18px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 420px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #ff6b00;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(255,107,0,0.25);
}

.footer-links-container {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links-group {
    flex: 1;
    min-width: 200px;
}

.footer-links-group h4 {
    color: #ff6b00;
    margin-bottom: 18px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-links-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff6b00;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 0;
    position: relative;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -18px;
    color: #ff6b00;
    opacity: 0;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: #ff6b00;
    padding-left: 12px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.9;
}

.footer-contact i {
    color: #ff6b00;
    margin-top: 3px;
    min-width: 16px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ff6b00;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright p,
.footer-designed p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Google Haritalar konteyneri - GÜNCELLENMİŞ */
.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 8px solid #fff;
    background: #fff;
    transition: all 0.3s ease;
    min-height: 400px;
}

.map-container:hover {
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* Harita yüklenmezse görünecek yedek stil */
.map-container:empty::before {
    content: "Harita yükleniyor...";
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background: #f8f9fa;
    color: #666;
    font-size: 1.1rem;
}

/* Animasyonlar */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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);
    }
}

/* Yeni daha belirgin vurgu animasyonları */
@keyframes superHighlight {
    0% { 
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        background: white;
    }
    30% {
        transform: scale(1.08);
        box-shadow: 0 20px 50px rgba(255, 107, 0, 0.4);
        background: linear-gradient(135deg, #fff 0%, #ffece2 100%);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 25px 60px rgba(255, 107, 0, 0.5);
        background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        background: white;
    }
}

.service-card.super-highlighted {
    animation: superHighlight 1.8s ease-out;
    z-index: 100;
    position: relative;
    border-top: 4px solid #ff6b00;
}

/* Parlak çerçeve efekti */
.service-card.super-highlighted::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 18px;
    background: linear-gradient(45deg, #ff6b00, #ff9a3d, #ff6b00);
    z-index: -1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* İkon ve başlık için ek efektler */
.service-card.super-highlighted .service-icon {
    animation: iconBounce 0.8s ease;
}

.service-card.super-highlighted h3 {
    color: #ff6b00;
    animation: textPulse 0.8s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.2); }
}

@keyframes textPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Alt menü stilleri */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 200px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
    padding: 0;
}

.submenu a {
    color: #333 !important;
    padding: 8px 20px !important;
    display: block;
    font-size: 0.9rem !important;
    transition: all 0.2s;
}

.submenu a:hover {
    background: #f5f5f5;
    color: #ff6b00 !important;
    padding-left: 25px !important;
}

.submenu a:after {
    display: none !important;
}

/* Mobilde alt menüyü gizle */
@media (max-width: 768px) {
    .submenu {
        display: none;
    }
    
    .has-submenu:hover .submenu {
        display: none;
    }
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #1a3a6c;
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .whatsapp-btn, .phone-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }
    .whatsapp-btn img, .phone-btn img {
        width: 28px;
        height: 28px;
    }
    .whatsapp-btn {
        right: 20px;
    }
    .phone-btn {
        left: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* Hizmetler Bölümü Mobil Görünüm - GÜNCELLENDİ */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
        margin: 0;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 10px;
        flex-grow: 1;
    }
    
    .service-wave {
        height: 20px;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-card {
        min-height: 180px;
        padding: 15px 12px;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
}

/* İletişim Mobil Görünüm - TAMAMEN YENİ */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-item {
        padding: 20px 15px;
        min-height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .contact-icon {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .contact-details span {
        font-size: 0.8rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-header {
        padding: 15px 20px;
    }
    
    .map-header h3 {
        font-size: 1.2rem;
    }
    
    .map-header p {
        font-size: 0.9rem;
    }
}

/* Çok küçük ekranlar için iletişim */
@media (max-width: 480px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-item {
        min-height: 140px;
        padding: 15px 12px;
    }
    
    .contact-icon {
        font-size: 1.6rem;
    }
}

/* Footer Mobil Görünüm - TAMAMEN YENİ */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 30px;
        padding: 30px 0 20px;
    }
    
    .footer-brand {
        min-width: 100%;
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-brand h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-brand p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-links-container {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
    
    .footer-links-group {
        min-width: 100%;
    }
    
    .footer-links-group h4 {
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact p {
        margin-bottom: 10px;
        font-size: 0.9rem;
        align-items: flex-start;
    }
    
    .footer-contact i {
        margin-top: 2px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 15px 0;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
    
    .footer-designed p {
        font-size: 0.8rem;
    }
}

/* Ek mobil iyileştirmeler */
@media (max-width: 768px) {
    /* Genel padding ayarları */
    section {
        padding: 40px 0;
    }
    
    /* Hero bölümü yüksekliği */
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Hakkımızda bölümü */
    .about-content {
        gap: 25px;
    }
    
    .about-image {
        min-height: 250px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    /* Butonlar */
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* WhatsApp ve telefon butonları */
    .whatsapp-btn, .phone-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
    }
    
    .whatsapp-btn {
        right: 15px;
    }
    
    .phone-btn {
        left: 15px;
    }
    
    .whatsapp-btn img, .phone-btn img {
        width: 24px;
        height: 24px;
    }
}

/* Çok küçük ekranlar için ek ayarlar */
@media (max-width: 360px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* Header mobil iyileştirmesi */
@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

/* Section header mobil */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 30px;
    }
    
    h2 {
        font-size: 1.8rem;
        padding-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding-top: 10px;
    }
}

/* Mobilde hizmetler ve iletişim bölümü için padding ayarları */
@media (max-width: 768px) {
    /* Mobilde hizmetler grid padding azaltma */
    .services.mobile-optimized {
        padding: 40px 0;
    }

    .services .container {
        padding: 0 15px;
    }

    /* İletişim bölümü padding ayarı */
    .contact {
        padding: 40px 0;
    }

    .contact .container {
        padding: 0 15px;
    }
}

/* MOBİL GÖRÜNÜM İYİLEŞTİRMELERİ - Son ekleme */
/* Bu blok dosya sonuna eklenmeli; mevcut kuralları gerektiğinde geçersiz kılacak şekilde tasarlandı. */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 15px 10px;
        margin: 0;
        min-height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    
    .service-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
        line-height: 1.2;
        min-height: 2.4em;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .service-card p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex-grow: 1;
    }
    
    .service-wave {
        display: none; /* Mobilde dalgayı kaldırıyoruz */
    }
    
    .services .section-header {
        margin-bottom: 25px;
    }
    
    .services h2 {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        padding: 0 15px;
    }

    /* Hizmetler konteynerinin daha sıkışık mobil ayağı */
    .services.mobile-optimized {
        padding: 40px 0;
    }

    .services .container {
        padding: 0 15px;
    }

    /* İletişim bölümünde padding azaltma */
    .contact {
        padding: 40px 0;
    }

    .contact .container {
        padding: 0 15px;
    }

    /* İletişim kartları düzeni */
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }

    .contact-item {
        padding: 15px 10px;
        min-height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 10px;
    }

    .contact-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .contact-details h3 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .contact-details p {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }

    .contact-details span {
        font-size: 0.7rem;
    }

    .map-container {
        margin-top: 20px;
        border-radius: 12px;
    }

    .map-container iframe {
        height: 250px;
    }

    .map-header {
        padding: 12px 15px;
    }

    .map-header h3 {
        font-size: 1rem;
    }

    .map-header p {
        font-size: 0.8rem;
    }

    /* Genel mobil ayarlar */
    section {
        padding: 40px 0;
    }

    h2 {
        font-size: 1.6rem;
        padding-bottom: 8px;
    }

    .section-subtitle {
        font-size: 0.85rem;
        padding-top: 8px;
    }

    .whatsapp-btn, .phone-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
    }

    .whatsapp-btn {
        right: 15px;
    }

    .phone-btn {
        left: 15px;
    }

    .whatsapp-btn img, .phone-btn img {
        width: 22px;
        height: 22px;
    }
}

/* Çok küçük ekranlar için ek optimizasyonlar */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-card {
        min-height: 140px;
        padding: 12px 8px;
    }

    .service-icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .service-card h3 {
        font-size: 0.85rem;
    }

    .service-card p {
        font-size: 0.7rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-item {
        min-height: 140px;
        padding: 15px 12px;
    }

    .contact-icon {
        font-size: 1.6rem;
    }

    .map-container iframe {
        height: 220px;
    }
}

/* Yatay mod (mobil) düzeltmeleri */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 80vh;
    }
    
    .service-card {
        min-height: 120px;
    }
    
    .contact-item {
        min-height: 110px;
    }
}

/* İstanbul konum vurgulama stilleri */
.location-badge {
    background: rgba(255, 107, 0, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.location-highlight {
    background: linear-gradient(135deg, #1a3a6c, #2c5282);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
    border-left: 4px solid #ff6b00;
}

.location-highlight strong {
    color: #ff6b00;
    margin-left: 10px;
}

.location-highlight i {
    color: #ff6b00;
}

/* Footer'da konum bilgisi */
.footer-location {
    text-align: center;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-location p {
    margin: 0;
    color: #ff6b00;
    font-weight: 600;
    font-size: 1rem;
}

/* Mobil için konum stilleri */
@media (max-width: 768px) {
    .location-badge {
        font-size: 0.9rem;
        padding: 8px 15px;
        margin-bottom: 15px;
    }
    
    .location-highlight {
        padding: 12px;
        font-size: 0.9rem;
    }
}