/* ========================================================
   MOTAS ATIK YÖNETİMİ - CUSTOM CSS
   Renk Paleti: Koyu yeşil + Lacivert
   Font: Montserrat (başlık) + Open Sans (gövde)
   ======================================================== */

/* ===== GENEL ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--renk1);
    transition: all 0.3s ease;
}
a:hover { color: var(--renk2); }

img { max-width: 100%; height: auto; }

.section-padding { padding: 80px 0; }

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--renk1);
    margin-bottom: 10px;
    padding: 6px 16px;
    background: rgba(var(--renk1-rgb), 0.08);
    border-radius: 30px;
    border: 1px solid rgba(var(--renk1-rgb), 0.15);
}

.section-label-light {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.2);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.bg-light { background: #f4f7f6 !important; }


/* ===== ÜST BAR ===== */
.top-bar {
    background: #0d2818;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left a,
.top-bar-left span {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}
.top-bar-left a:hover { color: #4ade80; }

.top-bar-left i { margin-right: 5px; color: #4ade80; }

.top-bar-right {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.7);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 12px;
    transition: all 0.3s;
}
.top-bar-right a:hover {
    background: #4ade80;
    color: #0d2818;
    border-color: #4ade80;
}


/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    z-index: 1050;
}

.navbar.scrolled {
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar-logo {
    max-height: 50px;
    transition: all 0.3s;
}
.navbar.scrolled .navbar-logo { max-height: 40px; }

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #0d2818;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e !important;
    padding: 8px 16px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--renk1);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--renk1) !important; }

.btn-teklif {
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    color: #fff !important;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.btn-teklif:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--renk1-rgb), 0.35);
    color: #fff !important;
}

.nav-phone {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--renk1) !important;
}
.nav-phone i { margin-right: 4px; }

.navbar-toggler {
    border: 2px solid var(--renk1);
    padding: 6px 10px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23166534' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; }

.hero-slide {
    height: 85vh;
    min-height: 550px;
    max-height: 800px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: #0d2818;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,40,24,0.92) 0%, rgba(13,40,24,0.7) 50%, rgba(26,26,46,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-subtitle {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #4ade80;
    margin-bottom: 15px;
    padding: 8px 20px;
    border: 1px solid rgba(74,222,128,0.3);
    border-radius: 30px;
    background: rgba(74,222,128,0.1);
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 15px; }

.btn-hero-primary {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(22,163,74,0.4);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 32px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.hero-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 3px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: #4ade80;
    width: 45px;
}

.hero-nav {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}
.hero-nav::after { font-size: 18px !important; }
.hero-nav:hover { background: rgba(255,255,255,0.2); }


/* ===== BUTONLAR ===== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--renk1-rgb), 0.35);
    color: #fff;
}

.btn-outline-custom {
    background: transparent;
    color: var(--renk1);
    border: 2px solid var(--renk1);
    padding: 10px 28px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-outline-custom:hover {
    background: var(--renk1);
    color: #fff;
}


/* ===== HAKKIMIZDA ===== */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #0d2818, #166534, #15803d);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-placeholder i {
    font-size: 80px;
    color: rgba(255,255,255,0.15);
}

.about-experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    color: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(var(--renk1-rgb), 0.3);
}

.exp-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-text { margin-bottom: 25px; color: #555; }
.about-text p { margin-bottom: 12px; }

.about-features { display: flex; flex-direction: column; gap: 15px; }

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f4f7f6;
    border-radius: 12px;
    border-left: 4px solid var(--renk1);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.about-feature-item h5 { font-size: 15px; margin-bottom: 2px; }
.about-feature-item p { font-size: 13px; color: #777; margin: 0; }


/* ===== HİZMET KARTLARI ===== */
.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.service-card-inner {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover .service-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.service-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-card-gradient {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon-bg {
    font-size: 60px;
    color: rgba(255,255,255,0.15);
}

.service-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-icon-wrap {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-top: -50px;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.service-card-text {
    font-size: 14px;
    color: #666;
    flex: 1;
    margin-bottom: 15px;
}

.service-card-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--renk1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-card:hover .service-card-link { color: var(--renk2); }


/* ===== SAYILARLA BİZ ===== */
.counters-section {
    position: relative;
    padding: 80px 0;
    background-color: #0d2818;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.counters-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,40,24,0.88) 0%, rgba(22,101,52,0.85) 50%, rgba(26,26,46,0.9) 100%);
}

.counter-item { text-align: center; padding: 20px; }

.counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(74,222,128,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #4ade80;
    border: 2px solid rgba(74,222,128,0.2);
}

.counter-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.counter-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ===== NEDEN BİZ ===== */
.whyus-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}
.whyus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(var(--renk1-rgb), 0.12);
    border-color: rgba(var(--renk1-rgb), 0.1);
}

.whyus-card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(var(--renk1-rgb), 0.06);
    line-height: 1;
}

.whyus-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(var(--renk1-rgb), 0.1), rgba(var(--renk2-rgb), 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--renk1);
    transition: all 0.3s;
}
.whyus-card:hover .whyus-card-icon {
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    color: #fff;
}

.whyus-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.whyus-card-text { font-size: 14px; color: #666; margin: 0; }


/* ===== ÇALIŞMA SÜRECİ ===== */
.process-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.04);
}
.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(var(--renk1-rgb), 0.1);
}

.process-step {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--renk1);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

.process-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}
.process-card p { font-size: 14px; color: #666; margin: 0; }


/* ===== MÜŞTERİ YORUMLARI ===== */
.testimonials-section {
    background: linear-gradient(180deg, #fff 0%, #f4f7f6 100%);
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    position: relative;
    margin: 10px;
    border: 1px solid rgba(0,0,0,0.04);
}

.testimonial-quote {
    font-size: 40px;
    color: rgba(var(--renk1-rgb), 0.15);
    margin-bottom: 15px;
    line-height: 1;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}
.testimonial-position { font-size: 13px; color: #888; }

.testimonial-stars {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #f59e0b;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

.testimonial-pagination .swiper-pagination-bullet {
    background: var(--renk1);
    opacity: 0.3;
}
.testimonial-pagination .swiper-pagination-bullet-active { opacity: 1; }


/* ===== REFERANSLAR ===== */
.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 120px;
}

.brand-logo {
    max-height: 60px;
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
}
.brand-item:hover .brand-logo {
    filter: grayscale(0);
    opacity: 1;
}

.brand-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #999;
    transition: all 0.3s;
}
.brand-placeholder i { font-size: 30px; }
.brand-placeholder span { font-size: 12px; font-weight: 600; text-align: center; }
.brand-item:hover .brand-placeholder { color: var(--renk1); }


/* ===== BLOG KARTLARI ===== */
.blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card .blog-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
}

.blog-card-gradient {
    background: linear-gradient(135deg, var(--renk1), var(--renk2)) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-gradient i { font-size: 40px; color: rgba(255,255,255,0.2); }

.blog-card .blog-card-body {
    padding: 25px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
}

.blog-card-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
    transition: color 0.3s;
}
.blog-card:hover .blog-card-title { color: var(--renk1); }

.blog-card-text { font-size: 14px; color: #666; margin-bottom: 15px; }

.blog-card-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--renk1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ===== CTA ===== */
.cta-section {
    position: relative;
    padding: 80px 0;
    background-color: #0d2818;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,40,24,0.92) 0%, rgba(22,101,52,0.88) 50%, rgba(20,39,78,0.9) 100%);
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.btn-cta {
    background: #4ade80;
    color: #0d2818;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-cta:hover {
    background: #22c55e;
    color: #0d2818;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74,222,128,0.3);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 28px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}


/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, rgba(13,40,24,0.92), rgba(22,101,52,0.85), rgba(20,39,78,0.9)), url('../images/page-header-bg.jpg') center/cover no-repeat;
    text-align: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
}
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item a:hover { color: #4ade80; }
.page-header .breadcrumb-item.active { color: #4ade80; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }


/* ===== SIDEBAR ===== */
.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    margin-bottom: 25px;
    border: 1px solid rgba(0,0,0,0.04);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--renk1);
}

.sidebar-services {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-services li { margin-bottom: 5px; }
.sidebar-services li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    color: #555;
    font-weight: 500;
    transition: all 0.3s;
}
.sidebar-services li a:hover {
    background: rgba(var(--renk1-rgb), 0.06);
    color: var(--renk1);
    transform: translateX(5px);
}
.sidebar-services li a i { font-size: 14px; color: var(--renk1); }

.sidebar-contact {
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    color: #fff;
}
.sidebar-contact .sidebar-title { color: #fff; border-color: rgba(255,255,255,0.3); }
.sidebar-contact p { color: rgba(255,255,255,0.85); font-size: 14px; }

.sidebar-phone {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff !important;
    margin-top: 10px;
}
.sidebar-phone:hover { color: #4ade80 !important; }

.sidebar-contact .btn-primary-custom {
    background: #fff;
    color: var(--renk1);
}
.sidebar-contact .btn-primary-custom:hover {
    background: #4ade80;
    color: #0d2818;
}

.sidebar-posts { list-style: none; padding: 0; margin: 0; }
.sidebar-posts li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}
.sidebar-posts li:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-posts li a {
    display: block;
    color: #555;
    transition: color 0.3s;
}
.sidebar-posts li a:hover { color: var(--renk1); }
.sidebar-posts li h6 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.sidebar-posts li small { color: #999; }


/* ===== HİZMET DETAY ===== */
.service-detail-placeholder {
    height: 350px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-detail-placeholder i { font-size: 80px; color: rgba(255,255,255,0.2); }

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.service-description { color: #555; }
.service-description p { margin-bottom: 15px; }
.service-description ul { padding-left: 20px; margin-bottom: 15px; }
.service-description li { margin-bottom: 8px; color: #555; }


/* ===== BLOG DETAY ===== */
.blog-detail-meta span {
    font-size: 13px;
    color: #999;
}

.blog-detail-content { color: #555; }
.blog-detail-content p { margin-bottom: 15px; }
.blog-detail-content h2, .blog-detail-content h3 { margin: 25px 0 15px; }

.blog-share { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 15px;
    transition: all 0.3s;
}
.share-btn:hover { background: var(--renk1); color: #fff; }


/* ===== İLETİŞİM ===== */
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-info-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.contact-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.contact-info-card p { font-size: 14px; color: #666; margin-bottom: 5px; }
.contact-info-card a { color: var(--renk1); }
.contact-info-card a:hover { color: var(--renk2); }

.contact-form-wrapper { padding-right: 20px; }

.form-control:focus {
    border-color: var(--renk1);
    box-shadow: 0 0 0 3px rgba(var(--renk1-rgb), 0.1);
}

.teklif-form-wrapper {
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    border-radius: 20px;
    padding: 40px 35px;
}

.form-control-dark {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 10px;
    padding: 12px 16px;
}
.form-control-dark::placeholder { color: rgba(255,255,255,0.6); }
.form-control-dark:focus {
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.18);
}

select.form-control-dark,
.form-select.form-control-dark {
    background-color: rgba(255,255,255,0.12);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 12px 40px 12px 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select.form-control-dark:focus,
.form-select.form-control-dark:focus {
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
    background-color: rgba(255,255,255,0.18);
}
select.form-control-dark option,
.form-select.form-control-dark option { color: #333; background: #fff; }

.btn-teklif-submit {
    background: #fff;
    color: var(--renk1);
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}
.btn-teklif-submit:hover {
    background: #4ade80;
    color: #0d2818;
    transform: translateY(-2px);
}

.map-wrapper {
    height: 400px;
    border-radius: 0;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }


/* ===== SSS ===== */
.faq-accordion { border: none; }

.faq-item {
    border: 1px solid rgba(0,0,0,0.06) !important;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item .accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a1a2e;
    padding: 18px 25px;
    background: #fff;
    box-shadow: none !important;
    gap: 15px;
}
.faq-item .accordion-button:not(.collapsed) {
    background: rgba(var(--renk1-rgb), 0.04);
    color: var(--renk1);
}
.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23166534'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--renk1);
    background: rgba(var(--renk1-rgb), 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    min-width: 32px;
    text-align: center;
}

.faq-body { padding: 0 25px 20px 70px; color: #666; font-size: 14px; }

/* ===== MİSYON VİZYON ===== */
.mv-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    height: 100%;
    border-left: 5px solid var(--renk1);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.mv-card h3 { font-size: 22px; margin-bottom: 15px; }
.mv-text { color: #666; font-size: 15px; }

/* ===== TEAM ===== */
.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: all 0.4s;
    text-align: center;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.team-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }

.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--renk1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
    transition: bottom 0.3s;
}
.team-card:hover .team-social { bottom: 0; }

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}
.team-social a:hover { background: var(--renk1); }

.team-info { padding: 20px; }
.team-info h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-info span { font-size: 13px; color: #888; }


/* ===== FOOTER ===== */
.site-footer { background: #0d2818; color: #fff; }

.footer-top { padding: 60px 0 40px; }

.footer-logo { max-height: 50px; }

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.footer-about {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover {
    background: #4ade80;
    color: #0d2818;
    border-color: #4ade80;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(74,222,128,0.3);
    display: inline-block;
}

.footer-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.footer-links li a i { font-size: 10px; color: #4ade80; }
.footer-links li a:hover { color: #4ade80; transform: translateX(5px); }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}
.footer-contact li a { color: rgba(255,255,255,0.6); display: flex; align-items: flex-start; gap: 12px; }
.footer-contact li a:hover { color: #4ade80; }
.footer-contact li i { color: #4ade80; margin-top: 3px; font-size: 15px; }

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-bottom a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}
.footer-bottom a:hover { color: #4ade80; }


/* ===== FLOATING BUTONLAR ===== */
.floating-btn {
    position: fixed;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: all 0.3s;
    animation: floatPulse 2s infinite;
}
.floating-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-btn { bottom: 95px; background: #25d366; }
.phone-btn { bottom: 25px; background: var(--renk1); }

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 5px 35px rgba(0,0,0,0.35); }
}

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--renk1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}
.scroll-top:hover { background: var(--renk2); color: #fff; }
.scroll-top.active { opacity: 1; visibility: visible; }

/* ===== DİNAMİK SAYFA ===== */
.dynamic-page-content { color: #555; }
.dynamic-page-content p { margin-bottom: 15px; }
.dynamic-page-content h2, .dynamic-page-content h3 { margin: 25px 0 15px; color: #1a1a2e; }
.dynamic-page-content img { border-radius: 10px; margin: 15px 0; }

/* ===== ABOUT TEXT FULL ===== */
.about-text-full { color: #555; }
.about-text-full p { margin-bottom: 12px; }


/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .hero-title { font-size: 42px; }
    .section-title { font-size: 30px; }
}

@media (max-width: 991px) {
    .section-padding { padding: 60px 0; }
    .hero-slide { height: 70vh; min-height: 450px; }
    .hero-title { font-size: 36px; }
    .hero-desc { font-size: 16px; }
    .cta-title { font-size: 26px; }
    .page-header-title { font-size: 32px; }
    .page-header { padding: 80px 0 50px; }
    .contact-form-wrapper { padding-right: 0; margin-bottom: 30px; }
    .navbar-collapse { background: #fff; padding: 20px; border-radius: 12px; margin-top: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
    .nav-link::after { display: none; }
}

@media (max-width: 767px) {
    .hero-slide { height: 60vh; min-height: 400px; }
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 11px; letter-spacing: 2px; }
    .section-title { font-size: 26px; }
    .counter-number { font-size: 32px; }
    .about-placeholder { height: 280px; }
    .cta-section { text-align: center; }
    .cta-section .col-lg-4 { text-align: center !important; margin-top: 20px; }
    .teklif-form-wrapper { padding: 30px 20px; }
    .footer-top { padding: 40px 0 20px; }
    .floating-btn { width: 48px; height: 48px; font-size: 20px; right: 15px; }
    .whatsapp-btn { bottom: 75px; }
    .phone-btn { bottom: 15px; }
    .scroll-top { left: 15px; width: 40px; height: 40px; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 24px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .section-title { font-size: 22px; }
    .page-header-title { font-size: 26px; }
    .top-bar-left { gap: 12px; flex-wrap: wrap; }
}
