/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f4f7f6;
    color: #333;
}

/* Modern Navigasyon */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); /* Cam efekti */
    padding: 25px 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
}

/* Sayfa aşağı kaydığında header'ın alacağı stil */
header.scrolled {
    padding: 15px 5%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #1a1a1a;
    cursor: pointer;
}

.logo span {
    color: #f39c12;
    font-weight: 300;
    margin-left: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    margin: 0 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.3s;
}

/* Modern Hover Efekti */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #f39c12;
    transition: 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #f39c12;
}

/* Header Butonu */
.nav-btn {
    background: #f39c12;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    transition: 0.3s;
    border: 2px solid #f39c12;
}

.nav-btn:hover {
    background: transparent;
    color: #1a1a1a !important;
}

/* Burger Menu Tasarımı */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
        display: none;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        animation: slideDown 0.4s ease;
    }

    .nav-links.nav-active {
        display: flex;
    }

    .nav-links li a {
        font-size: 1rem;
    }
}

/* Daha Kompakt Hero Alanı */
.hero {
    height: 70vh;
    min-height: 500px;
    padding-top: 120px; /* 🔴 EKLENDİ */
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.35)
        ),
        url("anasayfa.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-left: 10%;
    padding-right: 10%;
    color: white;
}

/* İçeriklerin biraz daha yukarıda durması için */
.hero-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px; /* Boşluklar daraltıldı */
}

.hero-content h1 {
    font-size: 3rem; /* Font boyutu biraz küçültüldü */
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1rem;
    max-width: 550px;
    color: #e0e0e0;
}

/* İstatistik bölümü daraltıldı */
.hero-stats {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Aksiyon Butonları */
.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cta-btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.3s all ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.primary-btn {
    background: #f39c12;
    color: #fff;
}

.primary-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.secondary-btn {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 1.8rem;
    color: #f39c12;
}

.stat-item span {
    font-size: 0.85rem;
    color: #bdc3c7;
    text-transform: uppercase;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 120px 5% 60px;
        text-align: center;
    }
    .hero-container { align-items: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .cta-btn { justify-content: center; }
    .hero-stats { justify-content: center; gap: 20px; }
}

/* Hizmetlerimiz Bölümü Modern Stil */
.services {
    padding: 100px 10%;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: #f39c12;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin: 10px 0;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #f39c12;
    margin: 0 auto;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tüm kartlar üzerine gelince asansörlü gibi tepki versin */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom: 4px solid #f39c12;
}

.service-card.featured {
    border-top: 5px solid #f39c12;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #fff4e5;
    color: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    background: #f39c12;
    color: #fff;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #2c3e50;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    text-decoration: none;
    color: #f39c12;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: 0.3s;
}

.service-card:hover .service-link {
    color: #f39c12;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Öne Çıkan Kart (Asansörlü Taşıma) */
.service-card.highlight {
    background: #fff;
    border-top: 5px solid #f39c12;
}

.about {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.about-section {
    padding: 60px 5%;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 0 0 42%; /* %50 yerine %42 – daha premium */
    max-width: 420px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 14px; /* premium köşe */
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    object-fit: cover;
}

.about-image:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(243, 156, 18, 0.15),
        rgba(0, 0, 0, 0.15)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image:hover::after {
    opacity: 1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f39c12;
}

.about-content {
    flex: 1;
}


.about-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f39c12; /* Turuncu alt çizgi */
    margin-top: 10px;
}

.title-line-left {
    width: 50px;
    height: 3px;
    background: #f39c12;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.main-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333 !important;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-item i {
    color: #f39c12;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}

/* İletişim */
#contact { padding: 100px 5%; }
.contact-wrapper { display: flex; flex-wrap: wrap; gap: 50px; }
.contact-info { flex: 1; min-width: 300px; }
.contact-info p { margin-bottom: 15px; font-size: 1.1rem; }
.contact-info i { color: #f39c12; margin-right: 10px; width: 25px; }
.map-container { flex: 1; min-width: 300px; border-radius: 10px; overflow: hidden; }

/* Sabit Butonlar */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.btn-whatsapp, .btn-call {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 25px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-whatsapp { background: #25d366; }
.btn-call { background: #3498db; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .about-content { flex-direction: column; }
    .hero-content h1 { font-size: 2.5rem; }
}

footer {
    text-align: center;
    padding: 30px;
    background: #2c3e50;
    color: white;
}

/* Premium Footer Tasarımı */
.premium-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 5% 20px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #f39c12; /* Vurgu rengi */
}

.footer-col p {
    line-height: 1.6;
    color: #bdc3c7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #f39c12;
}

/* Footer Linkleri */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f39c12;
    padding-left: 5px;
}

/* İletişim Öğeleri */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.contact-item i {
    color: #f39c12;
    margin-right: 15px;
    font-size: 1.1rem;
}

/* Sosyal Medya */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #f39c12;
    transform: translateY(-3px);
}

/* Alt Çizgi */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Mobilde Hizalama */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-item {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
}
/* Scroll Animasyonları */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Görsel için özel efekt */
.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.active.reveal-left,
.reveal.active.reveal-right {
    transform: translateX(0);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* MODERN İLETİŞİM KARTLARI */
.modern-contact h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    position: relative;
}

.modern-contact h3::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #f39c12;
    display: block;
    margin-top: 10px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.contact-card {
    position: relative; /* 🔴 ÇOK ÖNEMLİ */
    overflow: hidden;   /* Glow taşmasını keser */
}


.contact-card i {
    font-size: 26px;
    color: #f39c12;
    min-width: 40px;
    transition: 0.35s;
}

.contact-card span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7f8c8d;
}

.contact-card strong {
    display: block;
    font-size: 1rem;
    color: #2c3e50;
    margin-top: 3px;
}

/* Hover Efekti */
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    background: #f39c12;
}

.contact-card:hover i,
.contact-card:hover span,
.contact-card:hover strong {
    color: #fff;
}
/* Link olan kartlar için reset */
.contact-card {
    text-decoration: none;
    color: inherit;
}

/* Hover'da tıklanabilir hissi */
.contact-card:hover {
    cursor: pointer;
}
/* ICON DÖNME EFEKTİ */
.contact-card i {
    transition: transform 0.6s ease, color 0.3s ease;
}

.contact-card:hover i {
    transform: rotate(360deg) scale(1.15);
}
/* GLOW + PULSE */
.contact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(circle at center, rgba(243,156,18,0.35), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-card:hover::after {
    opacity: 1;
}

.contact-card:hover {
    animation: pulseGlow 1.6s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(243,156,18,0.0); }
    50% { box-shadow: 0 0 35px rgba(243,156,18,0.45); }
    100% { box-shadow: 0 0 0 rgba(243,156,18,0.0); }
}
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        animation: mobileSlideUp 0.8s ease both;
    }

    .contact-card:nth-child(1) { animation-delay: 0.1s; }
    .contact-card:nth-child(2) { animation-delay: 0.2s; }
    .contact-card:nth-child(3) { animation-delay: 0.3s; }
}

@keyframes mobileSlideUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.map-container iframe {
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    background: linear-gradient(
        135deg,
        #f39c12,
        #e67e22
    );
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 12px;
}

#services {
    scroll-margin-top: 100px;
    padding-top: 80px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Beyaz zeminli ana bölümlere hafif alt gölge */
.services,
#contact {
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    z-index: 1;
}

/* Bölümler arası soft ayırıcı çizgi */
.services::after,
#contact::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 0, 0, 0.08),
        transparent
    );
}

#contact {
    background-color: #ffffff;
    padding: 100px 5%;
}

/* Firma bilgileri kartları */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.contact-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: inherit;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;

    transition: all 0.35s ease;
}

/* İkon */
.contact-card i {
    font-size: 28px;
    color: #f39c12;
    min-width: 42px;
}

/* Üst başlık (Telefon, E-Mail vs.) */
.contact-card span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8c8c8c;
}

/* Asıl bilgi */
.contact-card strong {
    display: block;
    margin-top: 4px;
    font-size: 1.05rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Hover – çok zarif */
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    border-color: #f39c12;
}

/* SOL TARAF – KOMPAKT FİRMA BİLGİLERİ */
.compact-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 380px;
}

/* Küçük kartlar */
.small-card {
    padding: 16px 18px;
    border-radius: 12px;
    gap: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Küçük ikon */
.small-card i {
    font-size: 22px;
    min-width: 34px;
}

/* Üst etiket */
.small-card span {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

/* Ana bilgi */
.small-card strong {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Hover daha sakin olsun */
.small-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.1);
}

.legal-page {
    max-width: 900px;
    margin: 140px auto 80px;
    padding: 0 20px;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.legal-page h2 {
    margin-top: 30px;
    font-size: 1.3rem;
    color: #f39c12;
}

.legal-page p, .legal-page li {
    line-height: 1.8;
    color: #444;
}

