/* ==========================================================================
   1. CORE VARIABLES & RESET (Modern High-Contrast Tech Palette)
   ========================================================================== */
:root {
    /* Renk Paleti */
    --bg-light: #fafafa;
    --bg-card: #ffffff;
    
    /* Ana Vurgu (Amber / Vivid Orange) */
    --primary: #f97316;
    --primary-hover: #ea580c;
    --primary-glow: rgba(249, 115, 22, 0.2);
    
    /* Tipografi (Kömür Grisi & Nötr Tonlar) */
    --text-main: #09090b;       /* Keskin Koyu Kömür */
    --text-muted: #71717a;      /* Mat Slate Gri */
    --border-light: #e4e4e7;
    --border-hover: #d4d4d8;
    
    /* Fontlar */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Efektler */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 0.85rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Stili */
.logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.logo-accent {
    color: var(--primary);
}

.logo-sub {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 2px;
}

/* Navigasyon Linkleri */
.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #27272a;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: var(--transition);
}

.nav-item.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Minimal Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
    color: #27272a;
    font-weight: 500;
    border-radius: 6px;
}

.dropdown-menu li a:hover {
    background: #f4f4f5;
    color: var(--primary);
}

/* Butonlar */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary-glass {
    background: var(--text-main);
    color: #ffffff;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-glass:hover {
    background: #27272a;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobil Menü Butonu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 9rem 0 5rem 0;
    background: #fafafa;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.badge-light i {
    color: var(--primary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -1.5px;
}

.text-gradient {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-bright {
    background: var(--primary);
    color: #ffffff;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-bright:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-outline-light {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-light:hover {
    background: #f4f4f5;
    border-color: var(--border-hover);
}

/* Hero Visual Box */
.glass-card-hero {
    position: relative;
    border-radius: 16px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: #ffffff;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

.floating-badge strong {
    display: block;
    font-size: 1rem;
    color: var(--text-main);
}

.floating-badge span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   4. STATS SECTION
   ========================================================================== */
.stats-section {
    margin-top: 2rem;
    padding-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.stat-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
}

.stat-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.stat-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   5. SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 5rem 0;
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-header {
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

.sub-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-img-box {
    height: 200px;
    overflow: hidden;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-body {
    padding: 1.5rem;
}

.service-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.service-body p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.service-link:hover {
    gap: 0.6rem;
}

/* ==========================================================================
   6. ABOUT / FEATURE SUMMARY
   ========================================================================== */
.about-summary {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.check-list i {
    color: var(--primary);
}

.bright-glass-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.bright-glass-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.bright-glass-box h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.bright-glass-box p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.main-footer {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 0.85rem;
}

.social-links a:hover {
    background: var(--primary);
    color: #ffffff;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.6rem;
}

.footer-contact-info i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: #fafafa;
}

/* ==========================================================================
   8. RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .mobile-toggle { display: flex; }
    .hero-container, .about-grid { grid-template-columns: 1fr; }
    .stats-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-light);
        display: none;
    }
    .nav-menu.active { display: block; }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.25rem; }
    .stats-grid, .services-grid, .footer-grid { grid-template-columns: 1fr; }
}
/* ==========================================================================
   HAKKIMIZDA GÖRSEL BİREBİR TASARIM CSS KODLARI
   ========================================================================== */

.about-hero-section {
    padding: 8rem 0 5rem 0;
    background-color: #f4f6f8;
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
}

.about-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
}

/* Sol Kolon CSS */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.about-main-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.about-text-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.about-check-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    color: #111827;
    font-size: 0.95rem;
}

.check-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.about-call-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-dark-call {
    background: #0f172a;
    color: #ffffff;
    padding: 0.85rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-dark-call:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.phone-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.phone-icon-circle {
    width: 48px;
    height: 48px;
    background: #ffedd5;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.75rem;
    color: #6b7280;
}

.phone-number {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    text-decoration: none;
}

/* Orta Kolon CSS */
.about-center-col {
    text-align: center;
}

.about-3d-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.08));
}

/* Sağ Kolon Dikey Kesikli Çizgili Timeline CSS */
.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

/* Ortadan Geçen Dikey Kesikli Çizgi */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 27px;
    width: 2px;
    border-left: 2px dashed #d1d5db;
    z-index: 1;
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    z-index: 2;
}

.step-circle {
    width: 54px;
    height: 54px;
    background: #ffedd5;
    color: var(--primary);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px #f4f6f8; /* Çizgiyi halkanın arkasına gizler */
}

.step-body h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.35rem;
}

.step-body p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Vizyon Misyon Bölümü CSS */
.vision-mission-section {
    padding: 5rem 0;
    background: #ffffff;
    border-top: 1px solid var(--border-light);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vm-card {
    padding: 2.5rem;
    background: #fafafa;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.vm-icon {
    width: 56px;
    height: 56px;
    background: #ffedd5;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vm-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.vm-card p {
    color: #4b5563;
    font-size: 0.925rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobil / Tablet Responsive Desteği */
@media (max-width: 992px) {
    .about-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .vm-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   HİZMETLERİMİZ SAYFASI (3'LÜ KART GRID) CSS
   ========================================================================== */

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.25rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: #ffedd5;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-item:hover .service-icon-box {
    background: var(--primary);
    color: #ffffff;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    flex-grow: 1; /* Butonların en altta eşit hizada durmasını sağlar */
}

.service-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-link-btn i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.service-card-item:hover .service-link-btn {
    color: var(--primary);
}

.service-card-item:hover .service-link-btn i {
    transform: translateX(4px);
}

/* Tablet ve Mobil Responsive Kırılımları */
@media (max-width: 992px) {
    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   HİZMET DETAY SAYFASI CSS
   ========================================================================== */

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.detail-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.detail-feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.detail-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.detail-cta-card {
    background: #0f172a;
    color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.btn-cta-white {
    background: #ffffff;
    color: #0f172a;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-cta-white:hover {
    background: var(--primary);
    color: #ffffff;
}

/* Sidebar CSS */
.sidebar-widget {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}

.sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-services-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-services-list a:hover,
.sidebar-services-list a.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.sidebar-services-list a i {
    font-size: 0.75rem;
}

.contact-widget {
    text-align: center;
}

.widget-icon-box {
    width: 50px;
    height: 50px;
    background: #ffedd5;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1rem auto;
}

.sidebar-phone-btn {
    display: block;
    background: #111827;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

/* Responsive Kırılımları */
@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .detail-cta-card {
        flex-direction: column;
        text-align: center;
    }
}