/* ============================================
   TEDERSAN ELEMENTOR WIDGETS CSS
   Hero Slider - Temiz CSS (Tailwind Yok)
   ============================================ */

/* Hero Slider Container */
.tedersan-hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
}

/* Individual Slide */
.hero-slide {
    display: none;
    position: relative;
    height: 700px; /* Sabit yükseklik */
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    overflow: hidden; /* Taşan görseli gizle */
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

/* Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(15, 23, 35, 0.9), rgba(15, 23, 35, 0.7), rgba(15, 23, 35, 0.4));
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1); /* Başlangıçta büyük */
}

/* Slide animations */
.hero-slide.active .hero-content-inner {
    animation: slideInLeft 0.8s ease-out;
}

.hero-slide.active .hero-image {
    animation: zoomOut 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

/* Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(15, 23, 35, 0.9), rgba(15, 23, 35, 0.7), rgba(15, 23, 35, 0.4));
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.hero-content-inner {
    max-width: 42rem;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: rgba(0, 127, 255, 0.2);
    border: 1px solid rgba(0, 127, 255, 0.3);
    backdrop-filter: blur(4px);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #007fff;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Title */
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.hero-title .text-primary {
    color: #007fff;
}

/* Description */
.hero-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 32rem;
    line-height: 1.75;
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.hero-btn-primary {
    background-color: #007fff;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 127, 255, 0.25);
}

.hero-btn-primary:hover {
    background-color: #0066cc;
}

.hero-btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Navigation Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-arrow-prev {
    left: 2rem;
}

.hero-arrow-next {
    right: 2rem;
}

.hero-arrow i {
    width: 1.5rem;
    height: 1.5rem;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-dot.active {
    background: #007fff;
    border-color: #007fff;
    width: 32px;
    border-radius: 6px;
}

/* Progress bar inside active dot */
.hero-dot.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, 0.5);
    animation: dotProgress 5s linear;
}

@keyframes dotProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Stats Container */
.hero-stats-container {
    position: relative;
    z-index: 20;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: -4rem;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
    border-right: 1px solid #e2e8f0;
}

.hero-stat-item:last-child {
    border-right: none;
}

.hero-stat-icon {
    padding: 0.75rem;
    background-color: rgba(0, 127, 255, 0.1);
    border-radius: 50%;
    color: #007fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat-icon i {
    width: 2rem;
    height: 2rem;
}

.hero-stat-content {
    flex: 1;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Spacer */
.hero-spacer {
    height: 2rem;
    background-color: #f8fafc;
}

/* Progress Bar (Slider altında) */
.hero-progress-bar {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: rgba(0, 127, 255, 0.2);
    overflow: hidden;
}

.hero-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #007fff, #0066cc);
    animation: progressSlide 5s linear;
}

@keyframes progressSlide {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Responsive */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-slide {
        height: 700px;
    }
    
    .hero-content {
        padding: 8rem 2rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-stats-container {
        padding: 0 2rem;
    }
    
    .hero-spacer {
        height: 6rem;
    }
}

@media (min-width: 1024px) {
    .hero-slide {
        height: 800px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        height: 600px;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-stat-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 1rem;
    }
    
    .hero-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .hero-arrow {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .hero-arrow-prev {
        left: 1rem;
    }
    
    .hero-arrow-next {
        right: 1rem;
    }
}

/* ============================================
   Banner Widget
   ============================================ */
.tedersan-banner {
    position: relative;
    color: white;
    padding: 4rem 1rem;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* Hizalama için butonlar */
.banner-align-left .banner-container {
    text-align: left;
}

.banner-align-left .banner-buttons {
    justify-content: flex-start;
}

.banner-align-center .banner-container {
    text-align: center;
}

.banner-align-center .banner-buttons {
    justify-content: center;
}

.banner-align-right .banner-container {
    text-align: right;
}

.banner-align-right .banner-buttons {
    justify-content: flex-end;
}

.banner-content {
    margin-bottom: 2rem;
}

.banner-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-decoration: none;
    min-width: 200px;
}

.banner-btn i {
    width: 1.25rem;
    height: 1.25rem;
}

.banner-btn-primary {
    background-color: white;
    color: #007fff;
}

.banner-btn-primary:hover {
    background-color: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
}

.banner-btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.banner-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

@media (min-width: 640px) {
    .banner-buttons {
        flex-direction: row;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .tedersan-banner {
        padding: 5rem 2rem;
    }
    
    .banner-title {
        font-size: 3rem;
    }
}

/* ============================================
   Brands Grid Widget
   ============================================ */
.tedersan-brands-grid {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.brands-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}

.brands-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.brands-header-text {
    flex: 1;
}

.brands-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.brands-description {
    color: #64748b;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.brands-view-all {
    color: #007fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.brands-view-all:hover {
    text-decoration: underline;
}

.brands-view-all i {
    width: 1rem;
    height: 1rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.brands-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.brands-grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
}

.brands-grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
}

.brands-grid-cols-5 {
    grid-template-columns: repeat(2, 1fr);
}

.brands-grid-cols-6 {
    grid-template-columns: repeat(2, 1fr);
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    min-height: 10rem;
    transition: all 0.3s;
    text-decoration: none;
    gap: 0.75rem;
}

.brand-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #007fff;
}

.brand-logo {
    max-height: 3rem;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.brand-card:hover .brand-logo {
    transform: scale(1.1);
}

/* Marka adı - Logo gibi büyük (logo yoksa) */
.brand-name-large {
    font-size: 1.1rem;
    font-weight: 700;
    color: #9ca3af;
    transition: color 0.3s;
    text-align: center;
}

.brand-card:hover .brand-name-large {
    color: #007fff;
}

/* Marka adı - Logo altında küçük */
.brand-name-small {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
}

.brand-product-count {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

@media (min-width: 768px) {
    .brands-container {
        padding: 0 2rem;
    }
    
    .brands-grid-cols-2,
    .brands-grid-cols-3,
    .brands-grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .brands-grid-cols-5 {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .brands-grid-cols-6 {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ============================================
   Products Grid Widget
   ============================================ */
.tedersan-products-grid {
    padding: 3rem 0;
    background-color: white;
}

.products-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}

.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.products-header-text {
    flex: 1;
}

.products-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.products-description {
    color: #64748b;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.products-view-all-link {
    color: #007fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.products-view-all-link:hover {
    text-decoration: underline;
}

.products-view-all-link i {
    width: 1rem;
    height: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.products-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.products-grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
}

.products-grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
}

.products-grid-cols-5 {
    grid-template-columns: repeat(2, 1fr);
}

.products-grid-cols-6 {
    grid-template-columns: repeat(2, 1fr);
}

.product-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
    min-height: 8rem;
}

.product-card:hover {
    border-color: #007fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-brand-badge {
    margin-bottom: 0.5rem;
}

.product-brand-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.product-card:hover .product-title {
    color: #007fff;
}

.product-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-view-all-wrapper {
    margin-top: 3rem;
    text-align: center;
    display: none; /* Artık başlıkta gösteriliyor */
}

.products-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.products-view-all-btn:hover {
    background-color: #e2e8f0;
}

@media (min-width: 768px) {
    .products-container {
        padding: 0 2rem;
    }
    
    .products-grid-cols-2,
    .products-grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid-cols-5 {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .products-grid-cols-6 {
        grid-template-columns: repeat(6, 1fr);
    }
}


/* ============================================
   FAQ Widget
   ============================================ */
.tedersan-faq-widget {
    padding: 3rem 0;
    background-color: white;
}

.faq-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: #007fff;
    box-shadow: 0 2px 8px rgba(0, 127, 255, 0.1);
}

.faq-item.active {
    border-color: #007fff;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #94a3b8;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #007fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.25rem;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1.25rem;
}

.faq-answer p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .faq-container {
        padding: 0 2rem;
    }
    
    .faq-title {
        font-size: 1.875rem;
    }
}


/* ============================================
   Process Steps Widget
   ============================================ */
.tedersan-process-steps {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.process-main-description {
    font-size: 1.125rem;
    color: #64748b;
    margin: 0;
}

.steps-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 127, 255, 0.1);
    color: #007fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.step-icon i {
    width: 36px;
    height: 36px;
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 127, 255, 0.2);
}

.step-connector {
    display: none; /* Mobilde gizli */
}

.step-content {
    max-width: 300px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Tablet ve Desktop - Yatay Düzen */
@media (min-width: 768px) {
    .process-container {
        padding: 0 2rem;
    }
    
    .process-main-title {
        font-size: 2.5rem;
    }
    
    .steps-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0;
    }
    
    .step-item {
        position: relative;
    }
    
    .step-icon-wrapper {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    
    .step-connector {
        display: block;
        position: absolute;
        top: 40px;
        left: calc(50% + 40px);
        right: calc(-50% + 40px);
        height: 2px;
        background-color: #e2e8f0;
        z-index: 1;
    }
    
    /* Son adımda connector yok */
    .step-item:last-child .step-connector {
        display: none;
    }
}

/* 3 Adım için özel düzen */
@media (min-width: 768px) {
    .steps-wrapper:has(.step-item:nth-child(3):last-child) {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 4 Adım için özel düzen */
@media (min-width: 768px) {
    .steps-wrapper:has(.step-item:nth-child(4):last-child) {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 2 Adım için özel düzen */
@media (min-width: 768px) {
    .steps-wrapper:has(.step-item:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================
   Blog Posts Widget
   ============================================ */
.tedersan-blog-posts {
    padding: 4rem 0;
    background-color: white;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.blog-header-text {
    flex: 1;
}

.blog-main-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
}

.blog-main-description {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.blog-view-all {
    color: #007fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.blog-view-all:hover {
    text-decoration: underline;
}

.blog-view-all i {
    width: 1rem;
    height: 1rem;
}

.blog-swiper-wrapper {
    position: relative;
}

.blog-card {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: #007fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.blog-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
    background-color: #f1f5f9;
}

.blog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-thumbnail {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

.blog-meta-date,
.blog-meta-author {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-meta-date i,
.blog-meta-author i {
    width: 14px;
    height: 14px;
}

.blog-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #007fff;
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #007fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.3s;
}

.blog-card-link:hover {
    gap: 0.75rem;
}

.blog-card-link i {
    width: 1rem;
    height: 1rem;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    width: 44px;
    height: 44px;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    color: #64748b;
    transition: all 0.3s;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.swiper-button-prev i,
.swiper-button-next i {
    width: 24px;
    height: 24px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #007fff;
    border-color: #007fff;
    color: white;
}

.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #cbd5e1;
    opacity: 1;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background-color: #007fff;
    width: 24px;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .blog-container {
        padding: 0 2rem;
    }
    
    .blog-main-title {
        font-size: 2.25rem;
    }
    
    /* Desktop'ta oklar dışarıda */
    .swiper-button-prev {
        left: -60px;
    }
    
    .swiper-button-next {
        right: -60px;
    }
}

@media (max-width: 767px) {
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Mobilde oklar içeride */
    .swiper-button-prev {
        left: 10px;
    }
    
    .swiper-button-next {
        right: 10px;
    }
}


/* ============================================
   Menu Widget
   ============================================ */
.tedersan-menu {
    padding: 0;
    margin: 0;
}

.tedersan-menu .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Dikey Menü */
.menu-vertical .menu-list {
    display: flex;
    flex-direction: column;
}

.menu-vertical .menu-item {
    margin-bottom: 8px;
}

.menu-vertical .menu-item:last-child {
    margin-bottom: 0;
}

/* Yatay Menü */
.menu-horizontal .menu-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.menu-horizontal .menu-item {
    margin-right: 8px;
}

.menu-horizontal .menu-item:last-child {
    margin-right: 0;
}

/* Menü Linkleri */
.tedersan-menu .menu-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.tedersan-menu .menu-item a:hover {
    color: #007fff;
}

/* İkonlar */
.menu-with-icons .menu-item a i {
    width: 16px;
    height: 16px;
    margin-left: auto;
}

/* Responsive */
@media (max-width: 767px) {
    .menu-horizontal .menu-list {
        flex-direction: column;
    }
    
    .menu-horizontal .menu-item {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .menu-horizontal .menu-item:last-child {
        margin-bottom: 0;
    }
}


/* ============================================
   Contact Info Widget
   ============================================ */
.tedersan-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(0, 127, 255, 0.1);
    color: #007fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    width: 24px;
    height: 24px;
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: #0f172a;
    line-height: 1.5;
}

.contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: #007fff;
}

/* Responsive */
@media (max-width: 767px) {
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        width: 20px;
        height: 20px;
    }
}


/* ============================================
   Page Title Widget (Archive Header Modern)
   ============================================ */
.archive-header-modern {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 3rem 0;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

.archive-header-modern.with-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.archive-header-modern .container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.archive-header-content {
    margin-bottom: 0;
}

.archive-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.archive-subtitle {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .archive-header-modern {
        padding: 2rem 0;
    }
    
    .archive-title {
        font-size: 1.875rem;
    }
    
    .archive-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .archive-header-modern .container-wide {
        padding: 0 2rem;
    }
}


/* ============================================
   Section Title Widget
   ============================================ */
.tedersan-section-title {
    margin-bottom: 2.5rem;
}

.section-subtitle {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #007fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
}

.section-description {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

/* Tüm child elementler parent rengini alsın */
.section-description *,
.section-description p,
.section-description span,
.section-description strong,
.section-description em,
.section-description li {
    color: inherit;
}

.section-description p {
    margin: 0 0 1rem 0;
}

.section-description p:last-child {
    margin-bottom: 0;
}

.section-description a {
    color: #007fff;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.section-description a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.section-description strong {
    font-weight: 700;
}

.section-description em {
    font-style: italic;
}

.section-description ul,
.section-description ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.section-description li {
    margin-bottom: 0.25rem;
}

/* Hizalama */
.section-title-align-left .section-subtitle,
.section-title-align-left .section-title,
.section-title-align-left .section-description {
    text-align: left;
}

.section-title-align-center .tedersan-section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title-align-center .section-subtitle,
.section-title-align-center .section-title,
.section-title-align-center .section-description {
    text-align: center;
}

.section-title-align-right .tedersan-section-title {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.section-title-align-right .section-subtitle,
.section-title-align-right .section-title,
.section-title-align-right .section-description {
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
    }
    
    .section-description {
        font-size: 0.875rem;
    }
}
