@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- TEMEL DEĞİŞKENLER & TASARIM SİSTEMİ --- */
:root {
    --bg-dark: #0c0c0e;
    --bg-card: #151518;
    --bg-card-hover: #1e1e22;
    --text-light: #ffffff;
    --text-gray: #b0b0b5;
    --text-muted: #727278;
    --gold: #d4af37;
    --gold-dark: #aa7c11;
    --gold-gradient: linear-gradient(135deg, #e5c05b 0%, #d4af37 50%, #aa7c11 100%);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.2);
    --gold-border: 1px solid rgba(212, 175, 55, 0.25);
    --gold-border-focus: 1px solid rgba(212, 175, 55, 0.6);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --border-radius: 12px;
}

/* --- RESET & GENEL STİLLER --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

li {
    list-style: none;
}

/* --- YARDIMCI SINIFLAR --- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.text-gold {
    color: var(--gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* --- ORTAK BAŞLIK YAZILARI --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* --- BUTONLAR --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #0c0c0e;
    box-shadow: var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* --- KAMPANYA BANNER --- */
.campaign-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--gold-gradient);
    color: #0c0c0e;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1001;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    gap: 50px;
    padding-left: 100%;
}

.marquee-content span {
    display: inline-block;
    padding: 0 20px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* --- DİNAMİK NAVİGASYON --- */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 12, 14, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(12, 12, 14, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 0.03em;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: block;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-light);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* --- HERO ALANI --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.8) 0%, rgba(12, 12, 14, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

/* --- GÜVEN ROZETLERİ (TRUST BADGES) --- */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    background: rgba(12, 12, 14, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    border: var(--gold-border);
}

.badge-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* --- NE YAPIYORUZ? (PROSES) --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--gold-glow);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth);
}

.process-card:hover .process-number {
    color: rgba(212, 175, 55, 0.06);
}

.process-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.process-title {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.process-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* --- HİZMET KARTLARI --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--gold-glow);
}

.service-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-content {
    padding: 30px;
}

.service-card-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.service-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: #ffffff;
}

/* --- FİLTRELENEBİLİR PROJELER GRİDİ --- */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold-gradient);
    color: #000000;
    border-color: transparent;
    box-shadow: var(--gold-glow);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}

.project-img-holder {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.project-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-card:hover .project-img-holder img {
    transform: scale(1.06);
}

.project-city-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: var(--gold-border);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(5px);
}

.project-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-desc {
    color: var(--text-gray);
    font-size: 0.88rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* --- ÜRÜN KARTLARI --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--gold-glow);
}

.product-img-box {
    background: #111113;
    padding: 30px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img-box img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.product-desc {
    color: var(--text-gray);
    font-size: 0.88rem;
    margin-bottom: 22px;
    min-height: 45px;
}

/* --- DETAYLI TEKLİF FORMU & İLETİŞİM ALANI --- */
.contact-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-text {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-form-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: #0c0c0e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- GOOGLE REVIEWS SLIDER --- */
.reviews-section {
    background: #111113;
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-slide {
    min-width: 100%;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: var(--gold-border);
    text-align: center;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0c0c0e;
    font-size: 1.2rem;
}

.reviewer-name-group {
    text-align: left;
}

.reviewer-name {
    font-size: 1.05rem;
    font-weight: 600;
}

.reviewer-source {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    color: #FFC107;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    font-style: italic;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.carousel-nav-btn:hover {
    background: var(--gold-gradient);
    color: #000000;
    border-color: transparent;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* --- BEFORE/AFTER SLIDER --- */
.before-after-container {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: var(--gold-border);
}

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

.slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    /* initial width is 50% */
    width: 50%;
    border-right: 3px solid var(--gold);
}

.slider-range-input {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    margin: 0;
    transition: all 0.2s;
    z-index: 99;
    cursor: ew-resize;
    top: 0;
    left: 0;
}

/* Custom range slider styling */
.slider-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    cursor: ew-resize;
}

.slider-label {
    position: absolute;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 3;
    pointer-events: none;
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

/* --- İLETİŞİM DETAY / MAP --- */
.map-container {
    height: 380px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: var(--gold-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- BLOG GRID --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}

.blog-img-box {
    height: 220px;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-desc {
    color: var(--text-gray);
    font-size: 0.88rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* --- HAKKIMIZDA BÖLÜMÜ / MISYON VIZYON --- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-feature-item i {
    font-size: 1.5rem;
    color: var(--gold);
}

.about-feature-title {
    font-weight: 600;
    font-size: 1rem;
}

/* --- DETAY SAYFALARI (ÜRÜN/PROJE/HİZMET) --- */
.detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.detail-gallery {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: var(--gold-border);
}

.detail-gallery img {
    width: 100%;
}

.detail-info {
    padding-top: 10px;
}

.detail-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.detail-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.meta-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: var(--gold-border);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.detail-desc {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1rem;
}

.detail-specs {
    margin-bottom: 40px;
}

.specs-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.92rem;
}

.specs-list span:first-child {
    color: var(--text-muted);
}

.specs-list span:last-child {
    font-weight: 500;
}

/* --- BLOG DETAY LAYOUT --- */
.blog-detail-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-meta {
    margin-bottom: 30px;
    color: var(--gold);
    font-weight: 500;
}

.blog-detail-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: var(--gold-border);
    margin-bottom: 40px;
}

.blog-rich-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.blog-rich-text p {
    margin-bottom: 25px;
}

.blog-rich-text h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
}

.blog-rich-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-rich-text li {
    list-style: disc;
    margin-bottom: 10px;
}

.blog-cta-box {
    background: var(--bg-card);
    border: var(--gold-border);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 50px;
}

/* --- SÜREÇ ALANI --- */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.03);
}

.timeline-step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #0c0c0e;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.timeline-text {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* --- FOOTER --- */
.footer {
    background: #060607;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
}

.footer-desc {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.5;
}

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

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gold-gradient);
    color: #000000;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold-gradient);
}

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

.footer-links a {
    color: var(--text-gray);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--text-gray);
}

.footer-contact i {
    color: var(--gold);
    font-size: 1.05rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 20px;
}

/* --- MOBİL MENÜ TETİKLEME & RESPONSIVE --- */
@media (max-width: 1024px) {
    .services-grid, .projects-grid, .products-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar .container {
        height: 70px;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0c0c0e;
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        transition: 0.4s ease;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-description {
        font-size: 0.98rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid, .projects-grid, .products-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section-wrapper, .about-split, .detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .before-after-container {
        height: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
