:root {
    --primary-color: #FF8C00;    /* Yeni logodaki ateş turuncusu */
    --secondary-color: #000000;  /* Tam siyah */
    --bg-light: #FFFFFF;
    --text-dark: #2D3436;
    --white: #ffffff;
    --primary: #FF8C00;        /* Ana Turuncu */
    --secondary: #1A1A1A;      /* Koyu Gri/Siyah */
    --accent-blue: #34495e;    /* Monotonluğu kıran Petrol Mavisi */
    --soft-white: #F4F7F6;     /* Sayfayı ferahlatacak hafif soğuk beyaz */
    --silver: #bdc3c7;
}
html{
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--soft-white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Tasarımı - Hafif ve Şık */
header {
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 25px 0; /* Boyutu buradan ayarla */
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Menü Linkleri ve Arasındaki Mesafe */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 10px; 
    padding: 10px 15px; /* Tuş alanı oluşturduk */
    border-radius: 6px;
    transition: 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-links li a:hover {
    background-color: #f5f5f5; /* İstediğin o hafif gri arka plan */
    color: var(--primary-color);
}

/* Dropdown Ayarları */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.08);
    top: 100%;
    left: 0;
    border-radius: 8px;
    padding: 10px 0;
    border-top: 3px solid var(--primary-color);
    /* Animasyon ekledik */
    animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-content a {
    color: var(--secondary-color);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    margin: 0 !important;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--primary-color) !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Logo Kutusu */
.logo-container {
    display: flex;
    align-items: center;
    width: 260px; 
    height: 80px;
}
.logo-container:hover .main-logo {
    transform: scale(1.1); /* Üstüne gelince %10 büyütür */
}
.main-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/*Arama butonu*/
.modern-call-btn {
  display: flex;
  align-items: center;
  gap: 16px; 
  padding: 8px 25px 8px 8px; /* Biraz daha dengeli padding */
  background: #ffffff;
  text-decoration: none;
  border-radius: 60px; 
  border: 2px solid #f1f2f6; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.icon-circle {
  width: 48px; 
  height: 48px; 
  background: var(--secondary-color); /* Başlangıçta Siyah */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color); /* İkon Kırmızı */
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 22px;
  height: 22px;
  transition: all 0.4s ease;
}

.btn-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.top-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8; /* Hafif sönük gri, numara ön plana çıksın diye */
  font-weight: 800;
  transition: color 0.3s;
}

.phone-number {
  font-size: 17px;
  font-weight: 800;
  color: var(--secondary-color);
  white-space: nowrap;
  transition: color 0.3s;
}

/* --- HOVER EFEKTLERİ --- */

.modern-call-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.15); /* Kırmızımsı hafif gölge */
  border-color: var(--primary-color);
}

.modern-call-btn:hover .icon-circle {
  background: var(--primary-color); /* Daire kırmızı olur */
  color: #ffffff; /* İkon beyaz olur */
}

.modern-call-btn:hover .top-text {
  color: var(--primary-color); /* "Hemen Ara" kırmızı olur */
}

.modern-call-btn:hover .phone-number {
  color: var(--secondary-color);
}

/* Hafif bir parlama efekti */
.modern-call-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.modern-call-btn:hover::after {
  left: 100%;
}

/*footer*/
footer {
    background-color: var(--secondary-color); /* Siyah arka plan */
    color: var(--white);
    padding: 60px 0 20px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Mobilde alt alta gelmesi için */
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

/* Footer Logo ve Metin */
.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    color: #94a3b8; /* Hafif gri metin */
}

/* Footer Başlıkları */
.footer-section h3 {
    color: var(--primary-color); /* Turuncu başlıklar */
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}

/* Footer Linkleri ve Hover */
.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px; /* Hafif sağa kayma efekti */
}

/* İletişim Bölümü */
.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-color);
}

/* Footer En Alt Kısım */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
}



/*Header*/
:root {
    --primary: #FF8C00; /* Logondaki Turuncu */
    --secondary: #1A1A1A; /* Siyah */
    --accent: #FFB300; /* Bölücü Sarı */
}

/* PREMIUM HERO */
.premium-hero {
    padding: 100px 0;
    background: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.sub-title {
    color: var(--primary);
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 60px;
    line-height: 1.1;
    color: var(--secondary);
    margin-bottom: 25px;
}

.text-orange { color: var(--primary); }

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.btn-black {
    background: var(--accent-blue);
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-black:hover {
    background: var(--primary);
}

/* SARI BÖLÜCÜ */
.section-divider {
    height: 15px;
    background: var(--accent);
    width: 100%;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    right: 10%;
    top: -30px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    transform: rotate(45deg);
}

/* MODERN SERVICES */
.clean-services {
    padding: 100px 0;
    background: #fdfdfd;
}

.section-top {
    text-align: center;
    margin-bottom: 70px;
}

.orange-line {
    width: 60px;
    height: 4px;
    margin: 20px auto;
    background: var(--silver) !important;
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.m-box {
    padding: 60px 40px;
    background: #fff;
    border: 1px solid #eee;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.m-number {
    font-size: 80px;
    font-weight: 900;
    color: rgba(52, 73, 94, 0.05) !important;
    position: absolute;
    top: 10px;
    left: 20px;
}

.m-box h3 {
    margin-bottom: 15px;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.m-box p {
    color: #666;
    margin-bottom: 25px;
    z-index: 2;
    position: relative;
}
.m-box:hover {
    border-color: var(--accent-blue) !important;
    box-shadow: 0 15px 30px rgba(52, 73, 94, 0.1);
}

.m-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    border-bottom: 2px solid var(--primary);
}

/* HIGHLIGHTED CARD */
.highlighted {
    border-top: 5px solid var(--secondary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.m-box:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}
/* --- Yeni Özel Buton Sınıfı --- */
.btn-outline-dark {
    display: inline-block;
    padding: 16px 30px;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* --- Mobilde de İsmi Güncelleyelim --- */
@media (max-width: 768px) {
    /* ... diğer mobil kodların ... */
    
    .btn-black, .btn-outline-dark {
        width: 100%;
        text-align: center;
    }
}



/*MOBİL UYUM ALANI*/
@media (max-width: 768px) {
    /* 1. Sayfa Kaymasını Kökten Engelle */
    html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* 2. Header: Sol Logo - Sağ Boşluk (Hamburger İçin) */
    nav.container {
        display: flex;
        flex-direction: row !important; /* Yan yana kalsınlar */
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    .nav-links, 
    .header-contact, 
    .modern-call-btn {
        display: none !important; /* Menü ve Arama butonunu mobilde gizledik */
    }

    .logo-container {
        width: 160px; /* Mobilde logo boyutu */
        height: auto;
    }

    /* 3. Hero (Giriş) Bölümü Ayarları */
    .premium-hero {
        padding: 40px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr; /* Tek sütun */
        gap: 30px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px; /* Ekrana tam sığması için */
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 15px;
        padding: 0 10px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }

    .btn-black, .btn-outline-dark {
        width: 100%; /* Butonlar ekranı tam kaplasın */
        box-sizing: border-box;
    }

    .hero-image-box {
        order: -1; /* Görseli üste al */
        width: 100%;
    }

    .hero-image-box img {
        max-width: 80%; /* Görsel ekran dışına taşmasın */
        height: auto;
    }

    .orange-badge {
        transform: scale(0.7); /* Badge'i küçülttük */
        right: 0;
        bottom: 0;
    }

    /* 4. Hizmet Kutuları Ayarları */
    .clean-services {
        padding: 60px 0;
    }

    .modern-grid {
        grid-template-columns: 1fr; /* Alt alta diz */
        gap: 20px;
        padding: 0 15px;
    }

    .m-box {
        padding: 30px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    /* 5. Genel Konteyner Sığdırma */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    /* Sarı bölücüdeki siyah kareyi mobilde gizle */
    .section-divider::after {
        display: none;
    }
}

/*HİZMETLER KISMI*/
.vertical-services {
    padding: 60px 0;
    background: #fdfdfd;
}

/* Kart Yapısı */
.v-card {
    display: flex;
    background: #fff;
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

/* Dik Resim Alanı (Burada büyü bozulmuyor) */
.v-img {
    flex: 0 0 350px; /* Masaüstünde resim genişliği sabit */
    position: relative;
    height: 500px; /* Dikey resim için yükseklik verdik */
}

.v-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resim dikse alanı tam doldurur, kafası kesilmez */
}

.v-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    font-weight: 800;
    border-radius: 5px;
    font-size: 12px;
}

/* Yazı Alanı */
.v-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.v-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.v-btn {
    align-self: flex-start;
    padding: 12px 30px;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.3s;
}

.v-btn:hover {
    background: var(--primary);
}

/* --- MOBİL AYAR (ASIL ÖNEMLİ KISIM) --- */
@media (max-width: 768px) {
    .v-card {
        flex-direction: column; /* Mobilde resim üste, yazı alta */
    }

    .v-img {
        flex: none;
        width: 100%;
        height: 450px; /* Mobilde dikey resim alanı */
    }

    .v-content {
        padding: 25px;
        text-align: center;
    }

    .v-btn {
        align-self: center;
        width: 100%;
        text-align: center;
    }
}


/* Yazıların altındaki ikonlu maddeler */
.v-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.v-specs span {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    display: flex;
    align-items: center;
}

.v-specs i {
    color: var(--primary); /* Turuncu */
    margin-right: 8px;
    font-size: 14px;
}

/* Butonu biraz daha vurgulu yapalım */
.v-btn {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

/* Arka planı çok hafif bir degrade (geçiş) ile dolduralım ki boş durmasın */
.vertical-services {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7f6 100%);
    padding: 100px 0;
}

/* Kartın içine hafif bir derinlik */
.v-card:hover .v-img img {
    transform: scale(1.05);
    transition: 0.5s ease;
}


/*hakkımızda*/

/* Hakkımızda Bölümü Genel */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* Mobil uyum için */
}

/* Görsel Alanı */
.about-img {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary); /* Senin turuncu rengin */
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
}

.experience-badge span {
    font-size: 35px;
    font-weight: 800;
    display: block;
}

/* Metin Alanı */
.about-content {
    flex: 1;
    min-width: 350px;
}

.sub-title {
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 38px;
    color: #222;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Özellik Maddeleri */
.about-features {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-item i {
    color: var(--primary);
    font-size: 24px;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 5px;
}

/* Alıntı Alanı */
.about-quote {
    padding-left: 20px;
    border-left: 4px solid var(--primary);
    font-style: italic;
    color: #555;
    font-size: 17px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
    }
    .about-img {
        margin-bottom: 40px;
    }
}


/* İletişim Bölümü Genel */
.contact-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: stretch; /* Yükseklikleri eşitler */
    flex-wrap: wrap;
}

/* Sol Taraf Bilgiler */
.contact-info {
    flex: 1;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 40px;
    color: #222;
    margin-bottom: 30px;
}

.contact-info h2 span {
    color: var(--primary); /* Turuncu */
}

/* Bilgi Kartları */
.info-cards {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fdfdfd;
    padding: 22px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.info-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

/* SVG İkon Alanları */
.info-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-text h4 {
    font-size: 15px;
    color: #888;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text p, .info-text a {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
}

/* WhatsApp Butonu */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    width: fit-content;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: 0.3s;
}

.whatsapp-link svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

.whatsapp-link:hover {
    background: #128c7e;
    transform: scale(1.05);
}

/* Harita Alanı */
.contact-map {
    flex: 1.2;
    min-width: 450px;
    height: 650px; /* Haritayı uzattık */
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.07);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-map {
        min-width: 100%;
        height: 400px;
    }
    .contact-info {
        min-width: 100%;
    }
}

/*loader*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}


.spinner {
    --gap: 6px;
    --clr: #FF8C00;
    --height: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
}

.spinner span {
    background: var(--clr);
    width: 8px;
    height: var(--height);
    border-radius: 2px;
    animation: grow 1s ease-in-out infinite;
}

.spinner span:nth-child(2) {
    animation: grow 1s ease-in-out 0.15s infinite;
}

.spinner span:nth-child(3) {
    animation: grow 1s ease-in-out 0.3s infinite;
}

.spinner span:nth-child(4) {
    animation: grow 1s ease-in-out 0.475s infinite;
}

@keyframes grow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(2); }
}

/* Kapanış Sınıfı */
.loader-hide {
    opacity: 0;
    visibility: hidden;
}