/**
 * Ana Sayfa Özel CSS
 */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.feature-card {
    border-top: 3px solid var(--accent-color);
}

/* Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.slider-content {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    padding: 3rem 0;
    z-index: 2;
    color: var(--white);
}

.slider-content .container {
    position: relative;
}

/* Slider başlıkları - h1 ve h2 aynı boyutta */
.hero-slider .slider-slide .slider-content h1.slider-title,
.hero-slider .slider-slide .slider-content h2.slider-title,
.hero-slider .slider-slide .slider-content .slider-title {
    /* Daha büyük ve net: clamp ile responsive */
    font-size: clamp(3rem, 4vw, 4.2rem) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    animation: slideInUp 0.8s ease-out;
    line-height: 1.2 !important;
    display: block !important;
}

.slider-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

/* Slider Butonları */
.slider-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.slider-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1.1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.slider-cta-btn-outline {
    background-color: transparent !important;
    border: 2px solid #ffffff;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slider-cta-btn i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.slider-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.slider-cta-btn:hover i {
    transform: translateX(4px);
}

.slider-cta-btn-outline:hover i {
    transform: translateX(4px);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-indicator.active {
    background-color: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

.slider-indicator:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
    }
    
    .hero-slider .slider-slide .slider-content h1.slider-title,
    .hero-slider .slider-slide .slider-content h2.slider-title,
    .hero-slider .slider-slide .slider-content .slider-title {
        font-size: clamp(2.1rem, 8vw, 2.6rem) !important;
    }
    
    .slider-text {
        font-size: 1rem;
    }

    .slider-buttons {
        flex-direction: row;         /* Mobilde butonlar yan yana */
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.6rem;
    }
    
    .slider-cta-btn {
        padding: 0.7rem 1.4rem;      /* Butonları küçült */
        font-size: 0.85rem;
        gap: 0.5rem;
        width: auto;                /* Tam genişlik olmasın, içerik kadar */
        justify-content: center;
    }
    
    .slider-cta-btn i {
        font-size: 0.9rem;
    }
    
    .slider-content {
        padding: 2rem 0;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Hizmet Kutucukları (Slider içinde sabit) */
.services-cards-fixed {
    position: absolute;
    bottom: 10rem;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 10;
    pointer-events: none;
}

.services-cards-fixed .container {
    pointer-events: all;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1.25rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.service-content {
    flex: 1;
    width: 100%;
}

.service-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 0.6rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 0 0;
}

/* Responsive - Hizmet Kutucukları */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-cards-fixed {
        bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.75rem 1.5rem;
    }
    
    .service-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 1.25rem;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
}

/* Hakkımızda Section */
.about-section {
    position: relative;
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    background-image: none;
    pointer-events: none;
    z-index: 0;
}

.about-left-shape {
    position: absolute;
    bottom: -20px; /* Divin altına yakın konum */
    left: 0; /* Bir tık sola çekildi */
    transform: none;
    width: 320px;
    height: 640px;
    background: url('../images/hakkimizda/about1-left-shape.png') no-repeat center center;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
    z-index: 1; /* Pattern üzerinde, içerik altında */
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-section .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
}

.about-section .col-lg-6,
.about-section .col-md-6,
.about-section .col-12 {
    width: 100%;
}

.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

.about-image-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    opacity: 0.1;
    transform: rotate(-3deg);
    z-index: 0;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: translateY(-8px);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.about-image-badge i {
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-content {
    padding: 2rem 0;
    position: relative;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.1) 0%, rgba(44, 106, 158, 0.1) 100%);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.about-label i {
    font-size: 0.9rem;
}

.about-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 2px;
}

.about-summary {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.about-text p {
    margin-bottom: 1.25rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.9rem;
}

.about-feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: capitalize; /* Sadece baş harf büyük */
    letter-spacing: 0.08em;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.about-btn:hover::before {
    width: 300px;
    height: 300px;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.about-btn span,
.about-btn i {
    position: relative;
    z-index: 1;
}

.about-btn i {
    font-size: 0.9rem;
    transition: transform 0.4s ease;
}

.about-btn:hover i {
    transform: translateX(6px);
}

/* Responsive - Hakkımızda */
@media (max-width: 992px) {
    .about-section {
        padding: 5rem 0;
    }
    
    .about-image-wrapper {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .about-title {
        font-size: 2.25rem;
    }
    
    .about-summary {
        font-size: 1.15rem;
    }
    
    .about-features {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-left-shape {
        display: none;
    }
    
    .about-image-wrapper {
        padding: 1rem;
    }
    
    .about-image-badge {
        bottom: -15px;
        right: 20px;
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .about-content {
        padding: 1rem 0;
    }
    
    .about-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .about-title {
        font-size: 1.9rem;
        margin-bottom: 1.25rem;
    }
    
    .about-title::after {
        width: 60px;
        height: 3px;
    }
    
    .about-summary {
        font-size: 1.05rem;
        margin-bottom: 1.25rem;
    }
    
    .about-text {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .about-feature-item {
        padding: 0.65rem 1rem;
    }
    
    .about-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* Team Section */
.team-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    overflow: hidden;
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.65) 100%);
    z-index: 0;
}

.team-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    align-items: center;
    gap: 2.5rem;
}

.team-header {
    max-width: 520px;
}

.team-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.team-title {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 1rem 0;
}

.team-subtitle {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.8rem;
}

.team-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.3);
    color: var(--white);
}

.team-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.25);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.team-nav:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.team-nav i {
    font-size: 0.9rem;
}

.team-track {
    overflow: hidden;
    width: 100%;
}

.team-cards {
    display: flex;
    gap: 1rem;
    transition: transform 0.35s ease;
}

.team-card {
    flex: 0 0 calc((100% - 2rem) / 3);
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 1.1rem;
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-card:hover .team-description {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.team-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 0.8rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
    color: var(--white);
}

.team-role {
    font-size: 0.88rem;
    margin: 0;
    color: rgba(255,255,255,0.78);
}

.team-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    padding: 1rem;
    border-radius: 0 0 16px 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.team-description p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 992px) {
    .team-container {
        grid-template-columns: 1fr;
    }
    .team-card {
        flex: 0 0 calc((100% - 1rem) / 2);
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 3rem 0;
    }
    
    .team-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-header {
        max-width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .team-label {
        font-size: 0.8rem;
        padding: 0.35rem 0.9rem;
        margin-bottom: 1rem;
    }
    
    .team-title {
        font-size: 1.9rem;
        margin-bottom: 0.75rem;
    }
    
    .team-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .team-cta {
        padding: 0.85rem 1.4rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .team-slider {
        gap: 0.5rem;
        position: relative;
    }
    
    .team-nav {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    
    .team-nav i {
        font-size: 0.8rem;
    }
    
    .team-track {
        flex: 1;
        overflow: hidden;
    }
    
    .team-cards {
        gap: 0.5rem;
    }
    
    .team-card {
        flex: 0 0 calc((100% - 1rem) / 3);
        padding: 0.6rem;
        min-width: 0;
    }
    
    .team-photo {
        margin-bottom: 0.5rem;
        border-radius: 8px;
    }
    
    .team-name {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
        line-height: 1.3;
    }
    
    .team-role {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .team-description {
        display: none; /* Mobilde 3'lü görünümde açıklama gizli */
    }
}

/* Team Page Section (pages/ekip.php) */
.team-page-section {
    background: #ffffff !important;
    padding: 6rem 0;
}

.team-page-section .team-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 100%;
}

.team-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--team-primary) 0%, var(--team-secondary) 100%);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.2);
}

.team-page-section .team-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.team-page-section .team-subtitle {
    font-size: 1.15rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Team Card Page */
.team-card-page {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.team-card-page .team-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
}

.team-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-card-page .team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
}

.team-card-page .team-role {
    font-size: 0.95rem;
    margin: 0 0 1rem 0;
    color: rgba(0, 0, 0, 0.6);
}

.team-card-page .team-description {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 1rem;
    flex: 1;
}

.team-card-page .team-description p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.team-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--team-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.3s ease, color 0.3s ease;
}

.team-card-page:hover .team-link {
    gap: 0.75rem;
    color: var(--team-primary);
}

.team-link i {
    transition: transform 0.3s ease;
}

.team-card-page:hover .team-link i {
    transform: translateX(4px);
}

/* Team Pagination */
.team-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.team-pagination .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.team-pagination .page-item {
    margin: 0;
}

.team-pagination .page-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--white);
}

.team-pagination .page-link:hover {
    background: var(--team-primary);
    color: var(--white);
    border-color: var(--team-primary);
}

.team-pagination .page-item.active .page-link {
    background: var(--team-secondary);
    color: var(--white);
    border-color: var(--team-secondary);
}

.team-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Team Empty State */
.team-empty {
    text-align: center;
    padding: 4rem 0;
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
}

/* Responsive - Team Page */
@media (max-width: 991px) {
    .team-page-section {
        padding: 4rem 0;
    }
    
    .team-page-section .team-header {
        margin-bottom: 3rem;
    }
    
    .team-page-section .team-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .team-page-section {
        padding: 3rem 0;
    }
    
    .team-page-section .team-title {
        font-size: 1.9rem;
    }
}

/* Attorney Detail Section */
.attorney-detail-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Attorney CV Section */
.attorney-cv-section {
    padding: 4rem 0;
}

.attorney-cv-header {
    background: transparent;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.attorney-cv-header-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    color: var(--text-color);
}

.attorney-cv-photo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.attorney-cv-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attorney-cv-info {
    flex: 1;
}

.attorney-cv-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    line-height: 1.2;
}

.attorney-cv-position {
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.attorney-cv-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.attorney-cv-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.attorney-cv-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.attorney-cv-contact-item a {
    color: var(--attorney-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.attorney-cv-contact-item a:hover {
    color: var(--attorney-primary);
    text-decoration: underline;
}

.attorney-cv-social {
    display: flex;
    gap: 0.75rem;
}

.attorney-cv-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #000000;
    border: none;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.attorney-cv-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 77, 122, 0.25);
    color: var(--white);
}

.attorney-cv-social-link i {
    font-size: 1.1rem;
}

.attorney-cv-content {
    width: 100%;
}

.attorney-cv-section-item {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.attorney-cv-section-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.attorney-cv-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--attorney-secondary);
}

.attorney-cv-section-title i {
    color: var(--attorney-secondary);
}

.attorney-cv-section-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.8);
}

.attorney-cv-section-content p {
    margin-bottom: 1.25rem;
}

.attorney-cv-section-content p:last-child {
    margin-bottom: 0;
}

.attorney-cv-back {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.attorney-position {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.attorney-position i {
    color: var(--attorney-secondary);
}

.attorney-summary {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.attorney-detail {
    margin-bottom: 2.5rem;
}

.attorney-contact {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.attorney-contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1rem 0;
}

.attorney-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.attorney-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.attorney-contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--attorney-primary) 0%, var(--attorney-secondary) 100%);
    border-radius: 10px;
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(26, 77, 122, 0.15);
}

.attorney-contact-content {
    flex: 1;
}

.attorney-contact-content a {
    color: var(--attorney-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.attorney-contact-content a:hover {
    color: var(--attorney-primary);
}

.attorney-social {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.attorney-social-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1rem 0;
}

.attorney-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.attorney-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--attorney-primary) 0%, var(--attorney-secondary) 100%);
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 77, 122, 0.15);
}

.attorney-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 77, 122, 0.25);
    color: var(--white);
}

.attorney-social-link i {
    font-size: 1.1rem;
}

.attorney-back {
    margin-top: 2rem;
}

.btn-attorney-back {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    background-color: var(--attorney-secondary);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-attorney-back::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-attorney-back:hover::before {
    width: 300px;
    height: 300px;
}

.btn-attorney-back:hover {
    background-color: var(--attorney-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.btn-attorney-back i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-attorney-back:hover i {
    transform: translateX(-4px);
}

/* Responsive - Attorney Detail */
@media (max-width: 991px) {
    .attorney-cv-header-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .attorney-cv-photo {
        margin: 0 auto;
    }
    
    .attorney-cv-contact {
        justify-content: center;
    }
    
    .attorney-cv-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .attorney-detail-section {
        padding: 3rem 0;
    }
    
    .attorney-cv-section {
        padding: 2rem 0;
    }
    
    .attorney-cv-header {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .attorney-cv-name {
        font-size: 2rem;
    }
    
    .attorney-cv-position {
        font-size: 1.1rem;
    }
    
    .attorney-cv-photo {
        width: 150px;
        height: 150px;
    }
    
    .attorney-cv-contact {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .attorney-cv-section-title {
        font-size: 1.5rem;
    }
    
    .attorney-cv-section-content {
        font-size: 1rem;
    }
    
    .btn-attorney-back {
        width: 100%;
        justify-content: center;
    }
}

/* Hizmetlerimiz Section - Modern Tasarım */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-left-shape {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 320px;
    height: 640px;
    background: url('../images/hizmetler/blog-1-shape-left.png') no-repeat center center;
    background-size: contain;
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

.services-right-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 640px;
    background: url('../images/hizmetler/blog-1-shape-right.png') no-repeat center center;
    background-size: contain;
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(26, 77, 122, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(44, 106, 158, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-header-modern {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.services-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--services-primary) 0%, var(--services-secondary) 100%);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.2);
}

.services-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-subtitle-modern {
    font-size: 1.15rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.6;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.service-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* SEO: Article tag desteği */
article.service-card-modern {
    display: flex;
    flex-direction: column;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--services-primary) 0%, var(--services-secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card-link-modern {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.service-image-modern {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--services-primary) 0%, var(--services-secondary) 100%);
}

.service-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-modern:hover .service-image-modern img {
    transform: scale(1.1);
}

.service-overlay-modern {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover .service-overlay-modern {
    opacity: 1;
}

.service-icon-modern {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--services-primary) 0%, var(--services-secondary) 100%);
    color: var(--white);
}

.service-icon-modern i {
    font-size: 4rem;
    opacity: 0.9;
    transition: transform 0.4s ease;
}

.service-card-modern:hover .service-icon-modern i {
    transform: scale(1.1) rotate(5deg);
}

.service-content-modern {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card-modern:hover .service-title-modern {
    color: var(--services-primary);
}

.service-description-modern {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.service-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--services-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link-modern i {
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-link-modern {
    color: var(--services-primary);
    gap: 0.75rem;
}

.service-card-modern:hover .service-link-modern i {
    transform: translateX(4px);
}

.services-cta-modern {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.btn-services-modern {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-services-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-services-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-services-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.btn-services-modern i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.btn-services-modern:hover i {
    transform: translateX(6px);
}

/* Responsive - Hizmetlerimiz */
@media (max-width: 992px) {
    .services-section {
        padding: 5rem 0;
    }
    
    .services-title-modern {
        font-size: 2.4rem;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .services-left-shape,
    .services-right-shape {
        display: none;
    }
    
    .services-header-modern {
        margin-bottom: 3rem;
    }
    
    .services-title-modern {
        font-size: 2rem;
    }
    
    .services-subtitle-modern {
        font-size: 1rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-content-modern {
        padding: 1.5rem;
    }
    
    .btn-services-modern {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

/* Sıkça Sorulan Sorular Section - Minimal Tasarım */
.faq-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    overflow: hidden;
}

.faq-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 3rem;
}

.faq-section .col-lg-6 {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .faq-section .row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .faq-section .col-lg-6 {
        flex: 1 1 100%;
        width: 100%;
    }
}

.faq-header {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 100%;
}

.faq-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: var(--faq-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.faq-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2rem 0;
    line-height: 1.6;
    font-weight: 400;
}

.faq-accordion {
    max-width: 100%;
}

.faq-item {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: var(--faq-primary);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    flex: 1;
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--white);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: transparent;
}

.faq-answer.active {
    max-height: 2000px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer-content {
    padding-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-cta {
    margin-top: 2rem;
}

.btn-faq {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-faq:hover {
    transform: translateY(-1px);
    color: var(--white);
}

.btn-faq i {
    transition: transform 0.2s ease;
    margin-left: 0.5rem;
}

.btn-faq:hover i {
    transform: translateX(3px);
}

/* Responsive - FAQ */
@media (max-width: 992px) {
    .faq-section {
        padding: 5rem 0;
    }
    
    .faq-header {
        text-align: center;
        margin-top: 3rem;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
        background-attachment: scroll;
    }
    
    .faq-header {
        margin-bottom: 2.5rem;
    }
    
    .faq-title {
        font-size: 1.9rem;
    }
    
    .faq-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.1rem 1.25rem;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
    }
    
    .faq-answer.active {
        padding: 0 1.25rem 1.1rem;
    }
    
    .faq-answer-content {
        font-size: 0.9rem;
    }
    
    .btn-faq {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   ARTICLES SECTION
   ============================================ */
.articles-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.articles-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 650px;
    height: 650px;
    background-image: url('../images/tokmak.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.articles-section .container {
    position: relative;
    z-index: 2;
}

.articles-header {
    text-align: center;
    margin-bottom: 4rem;
}

.articles-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--articles-primary) 0%, var(--articles-secondary) 100%);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.articles-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.articles-subtitle {
    font-size: 1.15rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.6;
}

.articles-section .row {
    margin-bottom: 3rem;
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -15px;
    margin-right: -15px;
}

.articles-section .col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    width: 100%;
}

@media (max-width: 991px) {
    .articles-section .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Articles Grid (for makaleler.php page) */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 991px) {
    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Pagination */
.articles-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.articles-pagination .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.articles-pagination .page-item {
    margin: 0;
}

.articles-pagination .page-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--white);
}

.articles-pagination .page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.articles-pagination .page-item.active .page-link {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.articles-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Empty State */
.articles-empty {
    text-align: center;
    padding: 4rem 0;
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
}

/* Featured Article Card */
.article-card-featured {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.article-card-featured:hover {
    transform: translateY(-5px);
}

.article-card-featured .article-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.article-card-featured .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card-featured:hover .article-image img {
    transform: scale(1.05);
}

.article-card-featured .article-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.article-meta {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}

.article-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.article-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-title a:hover {
    color: var(--articles-primary);
}

.article-excerpt {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--articles-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.article-read-more:hover {
    gap: 0.75rem;
    color: var(--articles-primary);
}

/* Small Article Cards */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.article-card-small {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
}

.article-card-small:hover {
    transform: translateX(5px);
}

.article-image-small {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    height: 120px;
    min-height: 120px;
    max-height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    position: relative;
    background-color: #f5f5f5;
}

.article-image-small img {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.article-card-small:hover .article-image-small img {
    transform: scale(1.1);
}

.article-content-small {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 1.25rem;
    margin-left: 1.25rem;
}

.article-meta-small {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.article-title-small {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.article-title-small a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-title-small a:hover {
    color: var(--articles-primary);
}

.article-excerpt-small {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
    flex: 1;
}

.article-read-more-small {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--articles-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: gap 0.2s ease, color 0.2s ease;
    margin-top: auto;
}

.article-read-more-small:hover {
    gap: 0.6rem;
    color: var(--articles-primary);
}

.article-read-more-small i {
    font-size: 0.75rem;
}

.articles-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.btn-articles {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-articles::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-articles:hover::before {
    width: 300px;
    height: 300px;
}

.btn-articles:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.btn-articles i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-articles:hover i {
    transform: translateX(4px);
}

/* Responsive - Articles */
@media (max-width: 991px) {
    .articles-section {
        padding: 4rem 0;
    }
    
    .articles-header {
        margin-bottom: 3rem;
    }
    
    .articles-title {
        font-size: 2.2rem;
    }
    
    .article-card-featured .article-image {
        height: 250px;
    }
    
    .article-card-featured .article-content {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .articles-section {
        padding: 3rem 0;
    }
    
    .articles-title {
        font-size: 1.9rem;
    }
    
    /* Makale kartlarını 2'li grid yapısına çevir */
    .articles-section .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin: 0;
    }
    
    .articles-section .row > [class*="col-"] {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        flex: none;
    }
    
    /* Featured kart için */
    .article-card-featured {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .article-card-featured .article-image {
        height: 140px;
        flex-shrink: 0;
    }
    
    .article-card-featured .article-content {
        padding: 0.9rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .article-card-featured .article-title {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 0.4rem;
    }
    
    .article-card-featured .article-excerpt {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        flex: 1;
    }
    
    .article-card-featured .article-meta {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .article-card-featured .article-read-more {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-top: auto;
    }
    
    /* Small kartlar için */
    .articles-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        flex-direction: row;
    }
    
    .article-card-small {
        flex-direction: column;
        padding: 0.75rem;
        gap: 0.6rem;
        height: 100%;
        display: flex;
    }
    
    .article-image-small {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: 120px;
        min-height: 120px;
        max-height: 120px;
    }
    
    .article-image-small img {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
    
    .article-content-small {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        padding-top: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .article-meta-small {
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
    }
    
    .article-title-small {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.4rem;
    }
    
    .article-excerpt-small {
        font-size: 0.7rem;
        line-height: 1.4;
        margin-bottom: 0.4rem;
        flex: 1;
    }
    
    .article-read-more-small {
        font-size: 0.7rem;
        margin-top: auto;
    }
}

/* İletişim Bölümü */
.contact-section {
    position: relative;
    padding: 4rem 0;
    background-image: url('../images/iletisim.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--contact-primary) 0%, var(--contact-secondary) 100%);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.2);
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.contact-form-title,
.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form .form-group label {
    display: none;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.65rem 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    background-color: var(--contact-secondary);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-contact-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-contact-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-contact-submit:hover {
    background-color: var(--contact-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-contact-submit i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-contact-submit:hover i {
    transform: translateX(4px);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: none;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 0.5rem 0;
}

.contact-info-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.contact-info-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--white);
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.contact-social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.contact-social-links .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 77, 122, 0.25);
    color: var(--white);
}

.contact-social-links .social-link i {
    font-size: 1rem;
}

/* Responsive - İletişim */
@media (max-width: 991px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-header {
        margin-bottom: 3rem;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-header {
        margin-bottom: 2.5rem;
    }
    
    .contact-title {
        font-size: 1.9rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: row;
        text-align: left;
    }
    
    .contact-info-icon {
        margin: 0;
    }
}

/* Hesaplamalar Bölümü */
.calculations-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.calculations-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 650px;
    height: 650px;
    background-image: url('../images/terazi.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    opacity: 0.15;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    z-index: 1;
    pointer-events: none;
}

.calculations-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.calculations-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--services-primary) 0%, var(--services-secondary) 100%);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.2);
}

.calculations-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.calculations-subtitle {
    font-size: 1.15rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.6;
}

.calculations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.calculation-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.calculation-card:hover {
    transform: translateY(-5px);
    border-color: rgba(44, 106, 158, 0.3);
}

.calculation-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border-radius: 12px;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.calculation-icon i {
    color: var(--text-color) !important;
    display: block !important;
    z-index: 2;
    position: relative;
    font-size: 1.75rem !important;
    line-height: 1 !important;
}

.calculation-card:hover .calculation-icon {
    transform: scale(1.1) rotate(5deg);
}

.calculation-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.calculation-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    text-align: center;
}

.calculation-description {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin: 0 0 1rem 0;
    text-align: center;
}

.calculation-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--articles-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.2s ease, color 0.2s ease;
    margin-top: 0.5rem;
}

.calculation-link:hover {
    gap: 0.75rem;
    color: var(--articles-primary);
}

.calculation-link i {
    transition: transform 0.2s ease;
    font-size: 0.85rem;
}

/* Responsive - Hesaplamalar */
@media (max-width: 991px) {
    .calculations-section {
        padding: 4rem 0;
    }
    
    .calculations-title {
        font-size: 2.2rem;
    }
    
    .calculations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .calculations-section {
        padding: 3rem 0;
    }
    
    .calculations-title {
        font-size: 1.9rem;
    }
    
    .calculations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .calculation-card {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .calculation-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .calculation-icon i {
        font-size: 0.9rem !important;
    }
    
    .calculation-title {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 0.3rem;
    }
    
    .calculation-description {
        font-size: 0.65rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .calculation-link {
        font-size: 0.7rem;
        gap: 0.3rem;
        margin-top: 0.3rem;
    }
    
    .calculation-link i {
        font-size: 0.65rem;
    }
}

/* Mobilde slider üzerindeki hizmet kartlarını tamamen gizle */
@media (max-width: 768px) {
    .services-cards-fixed {
        display: none !important;
    }
}



