/* arkacep organizasyon - Gelişmiş Süreç Akışı & SSS Accordion Stilleri */

/* NASIL ÇALIŞIR? SÜREÇ ALANI */
.process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.process-step-card {
    padding: 2.5rem 1.5rem 2.25rem 1.5rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    text-align: center;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: auto; /* İçeriğe göre otomatik yükseklik */
    height: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.step-badge {
    position: relative; /* Kartın içine alındı, artık taşmaz */
    top: auto;
    left: auto;
    transform: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-cream-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 8px 16px hsla(43, 65%, 52%, 0.3);
    margin: 0 auto 1.25rem auto;
    flex-shrink: 0;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.process-step-card h3 {
    font-size: 1.15rem;
    color: var(--color-text-primary);
    margin-top: 0;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-family: var(--font-heading);
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.process-step-card p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.process-step-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow: var(--glass-shadow-hover);
}


/* SIKÇA SORULAN SORULAR ACCORDION */
.faq-accordion-wrap {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: 1.15rem 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-trigger:hover {
    color: var(--color-gold);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-gold);
    transition: transform 0.4s ease;
}

/* Accordion İçerik Alanı (Yumuşak Açılma) */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    background: hsla(38, 40%, 98%, 0.15);
}

.faq-content p {
    padding: 0 1.5rem 1.15rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--color-text-secondary);
}

/* Açık Durum Sınıfları */
.faq-item.active {
    border-color: var(--color-gold);
    box-shadow: var(--glass-shadow);
}

.faq-item.active .faq-trigger {
    color: var(--color-gold);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Artıyı çarpıya döndür */
}

/* Mobil & Tablet Düzenlemeler */
@media (max-width: 1100px) {
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .process-flow {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding-top: 2rem;
    }
    
    .process-step-card {
        padding: 3rem 1.5rem 2rem 1.5rem;
        min-height: auto; /* Mobilde dikey akış için yükseklik sıfırlandı */
    }
}

/* YÜZEN WHATSAPP BUTONU (GOLD GLASSMORPHIC WIDGET) */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: hsla(38, 50%, 98%, 0.78); /* Luxury fildişi cam */
    border: 1.5px solid var(--color-gold);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--color-gold-dark);
    padding: 0.85rem 1.6rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 
        0 10px 30px hsla(43, 65%, 52%, 0.12),
        inset 0 2px 5px rgba(255, 255, 255, 0.8);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
    background: var(--color-gold);
    border-color: var(--color-gold-light);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 15px 35px hsla(43, 65%, 52%, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.3);
    color: var(--color-cream-light);
}

.whatsapp-icon {
    color: var(--color-gold-dark);
    filter: drop-shadow(0 2px 4px hsla(43, 65%, 52%, 0.15));
    transition: color 0.4s ease;
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover .whatsapp-icon {
    color: var(--color-cream-light);
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobil ekranlar için WhatsApp optimizasyonu */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.85rem;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
        align-items: center;
    }
    .whatsapp-float span {
        display: none; /* Mobilde yazıyı gizleyerek yer tasarrufu sağla */
    }
}


/* YÜZEN ÇEREZ AYDINLATMA BANNERI */
.cookie-banner {
    position: fixed;
    bottom: 2.5rem;
    left: 2.5rem;
    width: calc(100% - 5rem);
    max-width: 440px;
    background: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    border-top: 3px solid var(--color-gold); /* Premium Gold Top Accent */
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 1.5rem 1.75rem;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--glass-shadow);
    z-index: 998;
    transform: translateY(150px) scale(0.95);
    opacity: 0;
    transition: 
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.6s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.cookie-banner:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover);
    background: var(--glass-bg-hover);
}

.cookie-banner.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.cookie-header h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.cookie-icon {
    width: 22px;
    height: 22px;
    color: var(--color-gold);
    flex-shrink: 0;
    animation: cookie-spin 20s linear infinite;
}

@keyframes cookie-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cookie-content p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: var(--color-gold-light);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px dashed var(--color-gold);
    transition: var(--transition-fast);
}

.cookie-content a:hover {
    color: var(--color-gold);
    border-bottom-style: solid;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.25rem;
}

.btn-cookie {
    padding: 0.65rem 1.4rem;
    font-size: 0.82rem;
    white-space: nowrap;
    flex: 1;
}

/* YASAL METİN MODALI */
.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 12, 8, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.legal-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.legal-modal-content {
    background: hsla(38, 45%, 98%, 0.88);
    border: 1px solid var(--glass-border);
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 30px 60px rgba(18, 12, 8, 0.18);
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.legal-modal-overlay.show .legal-modal-content {
    transform: scale(1) translateY(0);
}

.legal-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.legal-modal-close:hover {
    color: var(--color-gold);
}

.legal-modal-body {
    overflow-y: auto;
    padding-right: 1rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.legal-modal-body h3 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.75rem;
}

.legal-modal-body h4 {
    color: var(--color-gold-dark);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-modal-body p {
    margin-bottom: 1rem;
}

/* Çerez Banner Mobil */
@media (max-width: 576px) {
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        width: calc(100% - 2rem);
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }
    .btn-cookie {
        width: 100%;
        text-align: center;
    }
}



/* PRESTİJ GÖSTERGELERİ (STAT COUNTERS) */
.prestige-section {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    padding: 2rem 1.25rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    border: 1.5px solid var(--glass-border);
    background: var(--glass-bg);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: var(--glass-shadow-hover);
}

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(212, 175, 55, 0.05);
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.stat-card:hover .stat-icon-wrap {
    background: var(--color-gold);
    color: var(--color-cream-light);
    box-shadow: 0 0 15px hsla(43, 65%, 55%, 0.3);
    transform: scale(1.05) rotate(5deg);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* AKILLI ETKİNLİK PLANLAYICI SİHİRBAZI */
.planner-section {
    position: relative;
    z-index: 2;
}

.planner-wizard-wrap {
    max-width: 850px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    border: 1.5px solid var(--glass-border);
    background: var(--glass-bg);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.planner-step {
    display: none;
    padding: 2.5rem 2.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.planner-step.active {
    display: block;
    opacity: 1;
}

.planner-step-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.planner-step-title {
    font-size: 1.6rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.planner-step-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* Seçenek Kartları Grid */
.planner-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.planner-option {
    padding: 1.5rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.planner-option:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.03);
    transform: translateY(-4px);
}

.planner-option.selected {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.planner-option-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.planner-option.selected .planner-option-icon {
    transform: scale(1.1) rotate(8deg);
}

.planner-option-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* Range Slider Süslemesi */
.planner-slider-wrap {
    max-width: 500px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.planner-slider-display {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
}

.planner-slider-display span:last-child {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.planner-slider-container {
    position: relative;
    padding: 10px 0;
}

.planner-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--color-cream-dark);
    outline: none;
    cursor: pointer;
}

.planner-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-gold);
    border: 2px solid var(--color-cream-light);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.planner-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--color-gold-light);
}

/* Brief Özet Görünümü */
.planner-summary-card {
    border-radius: var(--border-radius-md);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    padding: 2.2rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 1.05rem;
}

.summary-line:last-child {
    border-bottom: none;
}

.summary-line span:first-child {
    color: var(--color-text-muted);
    font-weight: 500;
}

.summary-line span:last-child {
    color: var(--color-text-primary);
    font-weight: 700;
}

/* Form Yönlendirme Düğmeleri */
.planner-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-prev-step {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--color-text-primary);
}

.btn-prev-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-gold);
}

.btn-send-brief {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-cream-light);
    box-shadow: 0 10px 20px hsla(43, 65%, 55%, 0.25);
}

.btn-send-brief:hover {
    box-shadow: 0 15px 30px hsla(43, 65%, 55%, 0.4);
}

/* SVG İKON PARILDAMA & ZOOM ANIMASYONLARI */
.gold-svg-icon {
    width: 100%;
    height: 100%;
    stroke: var(--color-gold);
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease, filter 0.3s ease, transform 0.4s var(--transition-bounce);
}

.portal-inner:hover .gold-svg-icon,
.stat-card:hover .gold-svg-icon,
.planner-option:hover .gold-svg-icon {
    stroke: var(--color-gold-light);
    filter: drop-shadow(0 0 6px hsla(43, 65%, 55%, 0.6));
    transform: scale(1.06);
}

/* MOBİL ÖZEL UYUMLULUK (@media) */
@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .planner-wizard-wrap {
        border-radius: var(--border-radius-md);
    }
    
    .planner-step {
        padding: 2.5rem 1.5rem;
    }
    
    .planner-step-title {
        font-size: 1.5rem;
    }
    
    .planner-options-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .planner-option {
        padding: 1.5rem;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1.5rem;
    }
    
    .planner-option-text {
        font-size: 1rem;
    }
    
    .planner-slider-display {
        font-size: 2.8rem;
    }
    
    .planner-summary-card {
        padding: 1.5rem;
    }
    
    .planner-actions {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    
    .planner-actions .btn {
        width: 100%;
    }
}

/* SEÇKİN TEMATİK DENEYİMLER VİTRİNİ STİLLERİ */
.theme-showcase-section {
    position: relative;
    z-index: 2;
}

/* Sekmeler Konteyneri */
.theme-tabs-wrap, .service-tabs-wrap {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem; /* Boşluk 3.5rem'den 2rem'e düşürüldü */
    flex-wrap: wrap;
}

/* Tek Bir Sekme Düğmesi */
.theme-tab, .service-tab {
    padding: 0.7rem 1.4rem; /* Buton dolgusu küçültüldü */
    border-radius: var(--border-radius-pill);
    border: 1.5px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-size: 0.95rem; /* Yazı boyutu 1.05rem'den 0.95rem'e düşürüldü */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: var(--glass-shadow);
}

.theme-tab:hover, .service-tab:hover {
    border-color: var(--color-gold);
    color: var(--color-text-primary);
    transform: translateY(-3px);
    box-shadow: var(--glass-shadow-hover);
}

.theme-tab.active, .service-tab.active {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.09);
    color: var(--color-gold-light);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), var(--glass-shadow);
}

.theme-tab-icon, .service-tab-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.4s ease;
}

.theme-tab.active .theme-tab-icon, .service-tab.active .service-tab-icon {
    transform: rotate(12deg) scale(1.1);
    stroke: var(--color-gold-light);
}

/* İçerik Panelleri */
.theme-content-wrap, .service-content-wrap {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}

.theme-pane, .service-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-pane.active, .service-pane.active {
    display: block;
    opacity: 1;
}

/* Panel Izgarası (Grid) */
.theme-grid, .service-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem; /* Izgara boşluğu 2.5rem'den 1.5rem'e düşürüldü */
    align-items: stretch;
}

/* Görsel Tarafı */
.theme-visual-side, .service-visual-side {
    width: 100%;
    height: 100%; /* Bilgi kartıyla aynı yüksekliği paylaşması için */
}

.theme-image-frame, .service-image-frame {
    width: 100%;
    height: 100%; /* Bilgi kartına yüksekliği eşitler */
    padding: 10px;
    border-radius: var(--border-radius-lg);
    background: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    position: relative;
    display: flex; /* İçindeki görselin tam esnemesi için */
}

.theme-img, .service-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* Kenarlarda ve üstlerde hiçbir boşluk kalmaması için tam kaplama */
    border-radius: calc(var(--border-radius-lg) - 10px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-image-frame:hover .theme-img, .service-image-frame:hover .service-img {
    transform: scale(1.04);
}

.theme-img-overlay, .service-img-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: calc(var(--border-radius-lg) - 10px);
    background: linear-gradient(to top, rgba(18, 12, 8, 0.45) 0%, transparent 50%);
    pointer-events: none;
}

/* Bilgi/Detay Tarafı */
.theme-info-side, .service-info-side {
    padding: 1.5rem 1.75rem; /* İç dolgu daha da küçültülerek alan daraltıldı */
    border-radius: var(--border-radius-lg);
    background: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.theme-tag, .service-tag {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.theme-heading, .service-heading {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    margin-bottom: 0.4rem;
}

.theme-desc, .service-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
    margin-bottom: 0.7rem;
}

/* Özellikler Listesi */
.theme-features-list, .service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0; /* Boşluk daraltıldı */
    display: flex;
    flex-direction: column;
    gap: 0.45rem; /* Gap azaltıldı */
}

.theme-features-list li, .service-features-list li {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    line-height: 1.35;
}

.theme-features-list li svg, .service-features-list li svg {
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.theme-cta-btn, .service-cta-btn {
    width: 100%;
    padding: 0.7rem 1.4rem; /* Buton dolgusu daha da küçültüldü */
    font-size: 0.92rem; /* Yazı boyutu 0.92rem'e çekildi */
    text-align: center;
    border-radius: var(--border-radius-pill);
}

/* MOBİL VE TABLET UYUMLULUK SORGULARI (@media) */
@media (max-width: 992px) {
    .theme-grid, .service-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .theme-visual-side, .service-visual-side {
        height: 280px; /* Mobilde görselin şık durması için sabit kompakt yükseklik */
    }
    
    .theme-image-frame, .service-image-frame {
        height: 100%;
        padding: 8px;
    }
    
    .theme-info-side, .service-info-side {
        padding: 1.5rem 1.75rem; /* Dolgu küçültüldü */
    }
    
    .theme-heading, .service-heading {
        font-size: 1.5rem; /* Mobil başlık boyutu */
    }
}

@media (max-width: 768px) {
    .theme-tabs-wrap, .service-tabs-wrap {
        justify-content: center;
        flex-wrap: wrap;
        padding-bottom: 0.5rem;
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .theme-tab, .service-tab {
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 0.5rem 1rem; /* Sekme düğmeleri daraltıldı */
        font-size: 0.88rem;
        min-height: 38px;
    }
    
    .theme-visual-side, .service-visual-side {
        height: 220px; /* Küçük ekranlarda görsel alanı daha kompakt */
    }
    
    .theme-image-frame, .service-image-frame {
        height: 100%;
        padding: 6px;
        border-radius: var(--border-radius-md);
    }
    
    .theme-img, .service-img {
        border-radius: calc(var(--border-radius-md) - 3px);
    }
    
    .theme-img-overlay, .service-img-overlay {
        top: 6px;
        left: 6px;
        width: calc(100% - 12px);
        height: calc(100% - 12px);
        border-radius: calc(var(--border-radius-md) - 3px);
    }
    
    .theme-info-side, .service-info-side {
        padding: 1.25rem 1.2rem;
        border-radius: var(--border-radius-md);
    }
    
    .theme-heading, .service-heading {
        font-size: 1.35rem;
    }
    
    .theme-desc, .service-desc {
        font-size: 0.88rem;
        margin-bottom: 1rem;
    }
    
    .theme-features-list, .service-features-list {
        margin-bottom: 1.25rem;
        gap: 0.5rem;
    }
    
    .theme-features-list li, .service-features-list li {
        font-size: 0.88rem;
    }
    
    .theme-cta-btn, .service-cta-btn {
        min-height: 38px;
        padding: 0.7rem 1.4rem;
        font-size: 0.92rem;
    }
}

/* REFERANSLARIMIZ (SEÇKİN ÜNLÜ İSİMLER) STİLLERİ */
.references-section {
    position: relative;
    z-index: 2;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.reference-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--glass-border);
    background: var(--glass-bg);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.reference-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: var(--glass-shadow-hover);
}

.ref-image-wrap {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.ref-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top; /* Keep celebrity faces visible */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reference-card:hover .ref-img {
    transform: scale(1.08);
}

.ref-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 14, 11, 0.85) 0%, transparent 60%);
    pointer-events: none;
}

.ref-info {
    padding: 1.25rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ref-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ref-info h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-text-primary);
    margin: 0 0 0.35rem 0;
}

.ref-desc {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
    margin: 0;
    font-style: italic;
}

/* Referans Mobil Uyum */
@media (max-width: 1200px) {
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    .ref-image-wrap {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    .ref-image-wrap {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ref-image-wrap {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
        overflow: hidden !important;
    }
    
    .ref-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* BİZ KİMİZ / HAKKIMIZDA ALANI STİLLERİ */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.about-info-side {
    padding: 3rem;
    border-radius: var(--border-radius-lg);
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-gold-light);
    margin: 1.25rem 0;
    line-height: 1.55;
}

.about-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.about-cities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.75rem;
}

.city-tag {
    background: hsla(38, 30%, 98%, 0.05);
    border: 1px solid hsla(43, 65%, 52%, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.city-tag:hover {
    border-color: var(--color-gold);
    background: hsla(43, 65%, 52%, 0.08);
    transform: translateY(-2px);
}

.about-visual-side {
    position: relative;
}

.about-image-frame {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 420px;
    position: relative;
    box-shadow: var(--glass-shadow);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-frame:hover .about-img {
    transform: scale(1.05);
}

.about-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 14, 11, 0.65) 0%, transparent 60%);
    pointer-events: none;
}

/* Hakkımızda Mobil Uyum */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image-frame {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .about-info-side {
        padding: 2rem;
    }
    
    .about-lead {
        font-size: 1.05rem;
        margin: 1rem 0;
    }
    
    .about-desc {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .about-image-frame {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-info-side {
        padding: 1.5rem;
    }
    
    .about-lead {
        font-size: 1rem;
    }
    
    .about-desc {
        font-size: 0.88rem;
    }
    
    .about-image-frame {
        height: 250px;
    }
}



