/* Yan Sayfalar için Özel Stiller */

/* Page Hero Section */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    overflow: hidden;
    margin-top: 108px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tech-circuit {
    position: absolute;
    width: 300%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: circuitMove 20s linear infinite;
}

.tech-circuit.circuit-2 {
    top: 30%;
    animation-delay: -10s;
    animation-duration: 25s;
}

@keyframes circuitMove {
    0% {
        transform: translateX(-100%) rotate(0deg);
    }
    100% {
        transform: translateX(100%) rotate(360deg);
    }
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.breadcrumb span {
    color: var(--accent);
    font-weight: 600;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Page Content Section */
.page-content-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.mission-card,
.vision-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.mission-icon,
.vision-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}


.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* Timeline */
.timeline-section {
    margin-bottom: 80px;
}

.timeline-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
}

.timeline-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    z-index: 2;
    position: relative;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 0 30px;
    position: relative;
    border-left: 4px solid var(--primary);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--accent);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
}

.values-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(26, 90, 185, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.value-card:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2);
    color: var(--accent);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--gray-dark);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Team Section */
.team-section {
    margin-bottom: 80px;
}

.team-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.member-desc {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Sertifikalar Bölümü - Güncellenmiş */
.certificates-section {
    margin-bottom: 80px;
}

.certificates-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.certificate-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
    padding: 15px;
    position: relative;
}

.certificate-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.05);
}

.certificate-image::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed rgba(26, 90, 185, 0.1);
    border-radius: 8px;
    pointer-events: none;
}

.certificate-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.certificate-card p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.view-certificate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid var(--primary);
}

.view-certificate:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 90, 185, 0.2);
}

/* Sertifika overlay efekti */
.certificate-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.certificate-card:hover::after {
    opacity: 1;
}

/* Responsive tasarım için */
@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .certificate-image {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .certificates-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .certificate-card {
        padding: 20px;
    }
    
    .certificate-image {
        height: 150px;
    }
}

/* Products Page Specific */
.products-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* Services Page Specific */
.services-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* Contact Page Specific */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* Blog Page Specific */
.blog-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* Guides Page Specific */
.guides-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.8rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        flex: 0 0 100px;
        margin-right: 20px;
    }
    
    .timeline-content {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
        margin-top: 80px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .page-content-section {
        padding: 60px 0;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        margin-bottom: 15px;
        align-self: flex-start;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .values-grid,
    .team-grid,
    .certificates-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .team-member {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .timeline-section .section-title,
    .values-section .section-title,
    .team-section .section-title,
    .certificates-section .section-title {
        font-size: 1.8rem;
    }
    
    .timeline-year {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
}



/* About Page New Styles */
.story-section {
    margin-bottom: 80px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(26, 90, 185, 0.05) 0%, transparent 100%);
    border-radius: 20px;
    text-align: center;
}

.story-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.story-text {
    font-size: 1.2rem;
    color: var(--gray-dark);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
}

.story-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-dark);
    font-weight: 600;
}

.activities-section,
.growth-section {
    margin-bottom: 80px;
}

.activities-header,
.growth-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px;
}

.activities-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.activity-text p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.activity-image {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-production-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-image:hover .about-production-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    text-align: center;
}

.image-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.growth-content p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 25px;
}

.growth-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.growth-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.growth-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.stat-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin: 0;
}

.projects-section {
    margin-bottom: 80px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.project-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.project-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.project-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.project-client {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}

.media-section {
    margin-bottom: 80px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.media-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.media-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 20px;
    color: white;
}

.media-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.media-date {
    font-size: 0.9rem;
    opacity: 0.9;
}

.media-content {
    padding: 25px;
}

.media-content p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

.media-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--gray-light);
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: var(--accent);
    gap: 12px;
}

/* Timeline Section (mevcut timeline korunarak) */
.timeline-section {
    margin-bottom: 80px;
}

.timeline-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
}

.timeline-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    z-index: 2;
    position: relative;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 0 30px;
    position: relative;
    border-left: 4px solid var(--primary);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--accent);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
    .activities-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .activity-image {
        height: 300px;
        order: -1;
    }
    
    .growth-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        flex: 0 0 100px;
        margin-right: 20px;
    }
    
    .timeline-content {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .story-section {
        padding: 30px 20px;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .story-stats {
        gap: 30px;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .growth-stats {
        grid-template-columns: 1fr;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-image {
        height: 250px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        margin-bottom: 15px;
        align-self: flex-start;
    }
    
    .timeline-content {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .stat-item {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .activity-image {
        height: 200px;
    }
    
    .growth-stat {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .project-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .project-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-year {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
}


/* Products Page */
.products-categories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.category-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.category-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.2);
    color: var(--accent);
}

.category-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.category-card p {
    color: var(--gray-dark);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.comparison-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.comparison-table {
    max-width: 1000px;
    margin: 50px auto 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-weight: 700;
}

.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
    color: var(--dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: rgba(26, 90, 185, 0.02);
}

/* Products Page Main Styles */
.products-main-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* Controls Section */
.products-controls {
    margin-bottom: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.filter-section h3,
.sort-section h3,
.view-options h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-section h3 i,
.sort-section h3 i,
.view-options h3 i {
    color: var(--primary);
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    background: var(--bg-light);
    border: 2px solid var(--gray-light);
    border-radius: 20px;
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Sort Select */
.sort-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    background: var(--white);
    color: var(--dark);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 90, 185, 0.1);
}

/* View Options */
.view-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.view-btn {
    flex: 1;
    padding: 10px;
    background: var(--bg-light);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.view-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.view-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.items-per-page {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.page-select {
    padding: 8px 12px;
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
}

/* Search Section */
.search-section {
    margin-top: 20px;
}

.search-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.search-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1rem;
}

#mainSearch {
    width: 100%;
    padding: 15px 45px 15px 45px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

#mainSearch:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 90, 185, 0.1);
}

.search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 5px;
}

.search-clear:hover {
    color: var(--primary);
    opacity: 1;
}

.search-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.filters-info {
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Products Container */
.products-container {
    position: relative;
    min-height: 500px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Product Card Styles (Anasayfa'daki gibi) */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 550px;
    perspective: 1000px;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Product Front (Kapı) */
.product-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    transform-style: preserve-3d;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.product-badges {
    display: flex;
    gap: 8px;
}

.badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: linear-gradient(135deg, #00d4ff 0%, #1a5ab9 100%);
    color: white;
}

.badge-hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff3d3d 100%);
    color: white;
}

.badge-discount {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
}

.product-brand {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.product-image-container {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    flex-grow: 1;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-excerpt {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.price {
    display: flex;
    flex-direction: column;
}

.original-price {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.discount-percent {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff3d3d 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.product-action {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.detail-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.detail-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.detail-btn:hover i {
    transform: translateX(5px);
}

/* Product Back (Detay) */
.product-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    overflow-y: auto;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.product-card.active .product-front {
    transform: rotateY(180deg);
}

.product-card.active .product-back {
    transform: rotateY(0);
}

/* Detay İçeriği */
.product-details {
    height: 120%;
    display: flex;
    flex-direction: column;
}

.detail-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-light);
}

.detail-description {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-features {
    margin-bottom: 25px;
}

.product-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-features ul {
    list-style: none;
    padding-left: 0;
}

.product-features li {
    padding: 8px 0;
    color: var(--gray-dark);
    font-size: 0.9rem;
    position: relative;
    padding-left: 25px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--accent);
    font-weight: bold;
}

.detail-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gray-light);
    color: var(--dark);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex: 1;
    min-width: 120px;
}

.close-btn:hover {
    background: transparent;
    border-color: var(--gray);
    transform: translateY(-2px);
}

.all-products-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex: 1;
    min-width: 120px;
}

.all-products-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 90, 185, 0.2);
}

/* Loading Indicator */
.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results i {
    font-size: 4rem;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.no-results p {
    color: var(--gray-dark);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.clear-filters-btn {
    padding: 12px 25px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Pagination */
.pagination-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.pagination-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 150px;
}

.pagination-info span {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

#pageInfo {
    font-weight: 600;
    color: var(--dark);
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    color: var(--gray-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    color: var(--gray-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-number.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-number.dots {
    border: none;
    background: transparent;
    cursor: default;
}

.page-number.dots:hover {
    border: none;
    color: var(--gray-dark);
}

.items-info {
    min-width: 150px;
    text-align: right;
}

.items-info span {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.items-info strong {
    color: var(--primary);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .controls-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination-section {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .pagination-info,
    .items-info {
        text-align: center;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .products-controls {
        padding: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-card {
        height: 480px;
    }
    
    .product-image-container {
        height: 150px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .close-btn,
    .all-products-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .category-filters {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .view-buttons {
        flex-direction: column;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .product-card {
        height: 450px;
    }
    
    .product-front,
    .product-back {
        padding: 20px;
    }
}

/* List View */
.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
    height: auto;
    min-height: 200px;
    display: flex;
}

.products-grid.list-view .product-front {
    position: relative;
    transform: none;
    flex-direction: row;
    padding: 20px;
    width: 100%;
    height: auto;
}

.products-grid.list-view .product-image-container {
    width: 200px;
    height: 200px;
    margin: 0;
    flex-shrink: 0;
}

.products-grid.list-view .product-info {
    padding-left: 20px;
    flex: 1;
}

.products-grid.list-view .product-title {
    font-size: 1.2rem;
}

.products-grid.list-view .product-pricing {
    border-top: none;
    padding-top: 0;
    margin-top: 10px;
}

.products-grid.list-view .product-action {
    margin-top: 10px;
    justify-content: flex-start;
}

/* List view back (mobile için) */
@media (max-width: 768px) {
    .products-grid.list-view .product-card {
        flex-direction: column;
    }
    
    .products-grid.list-view .product-image-container {
        width: 100%;
        height: 150px;
        margin-bottom: 15px;
    }
    
    .products-grid.list-view .product-info {
        padding-left: 0;
    }
}



/* services.css - Hizmetler Sayfası Özel Stilleri */

/* Ana Hizmetler Bölümü */
.main-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(26, 90, 185, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.main-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.main-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(26, 90, 185, 0.15);
    border-color: var(--primary);
}

.service-icon-wrapper {
    margin-bottom: 25px;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    color: var(--white);
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.main-service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.main-service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.highlight-item i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Üretim Süreci Bölümü */
.production-process-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.production-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 90, 185, 0.03) 0%, transparent 100%);
    z-index: 0;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr 300px;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.process-step:nth-child(even) {
    grid-template-columns: 300px 1fr 100px;
}

.process-step:nth-child(even) .step-number {
    order: 3;
}

.process-step:nth-child(even) .step-content {
    order: 2;
    text-align: right;
}

.process-step:nth-child(even) .step-image {
    order: 1;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(26, 90, 185, 0.1);
    line-height: 1;
    text-align: center;
}

.step-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background: var(--white);
    transform: translateY(-50%) rotate(45deg);
}

.process-step:nth-child(odd) .step-content::before {
    right: -20px;
}

.process-step:nth-child(even) .step-content::before {
    left: -20px;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 15px;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.process-step:nth-child(even) .step-icon {
    float: right;
}

.step-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-content p {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

.step-image {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.step-image:hover img {
    transform: scale(1.05);
}

.step-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 90, 185, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.step-image:hover::before {
    opacity: 1;
}

/* Ek Hizmetler Bölümü */
.additional-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 90, 185, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.additional-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 90, 185, 0.15);
    border-color: var(--primary);
}

.additional-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.additional-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 15px;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.additional-service-card:hover .additional-service-icon {
    transform: scale(1.1) rotate(360deg);
}

.additional-service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.additional-service-card p {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Bölümü */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C750,50 500,80 250,90L0,100Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-text {
    max-width: 800px;
    margin: 0 auto 50px;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

.cta-button.primary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Animasyonlar */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.main-service-card:hover .service-icon {
    animation: floatAnimation 2s ease-in-out infinite;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .process-step {
        grid-template-columns: 80px 1fr 250px;
        gap: 30px;
    }
    
    .process-step:nth-child(even) {
        grid-template-columns: 250px 1fr 80px;
    }
}

@media (max-width: 992px) {
    .main-services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .process-step,
    .process-step:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .step-number {
        order: 1;
        font-size: 3.5rem;
    }
    
    .step-content {
        order: 3;
        text-align: left !important;
    }
    
    .step-content::before {
        display: none;
    }
    
    .step-image {
        order: 2;
        height: 200px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .cta-text h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .main-services-section,
    .production-process-section,
    .additional-services-section,
    .services-cta-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .main-service-card {
        padding: 30px;
    }
    
    .main-service-card h3 {
        font-size: 1.5rem;
    }
    
    .additional-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .additional-service-card {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-text h2 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .cta-text p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .main-service-card {
        padding: 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .main-service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .additional-service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .additional-service-card h3 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
}

/* Karanlık Mod Desteği */
@media (prefers-color-scheme: dark) {
    .main-services-section,
    .additional-services-section {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }
    
    .production-process-section {
        background: #0f172a;
    }
    
    .production-process-section::before {
        background: linear-gradient(135deg, rgba(26, 90, 185, 0.1) 0%, transparent 100%);
    }
    
    .main-service-card,
    .step-content,
    .additional-service-card {
        background: #1e293b;
        color: #e2e8f0;
    }
    
    .main-service-card h3,
    .step-content h3,
    .additional-service-card h3 {
        color: #f1f5f9;
    }
    
    .service-description,
    .step-content p,
    .additional-service-card p,
    .highlight-item {
        color: #cbd5e1;
    }
}

/* Yazdırma Stilleri */
@media print {
    .main-service-card,
    .step-content,
    .additional-service-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .services-cta-section {
        background: #fff;
        color: #000;
    }
    
    .cta-text h2 {
        color: #000;
    }
    
    .cta-button {
        display: none;
    }
}






/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    overflow: hidden;
    margin-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tech-circuit {
    position: absolute;
    width: 300%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: circuitMove 20s linear infinite;
}

.tech-circuit.circuit-2 {
    top: 30%;
    animation-delay: -10s;
    animation-duration: 25s;
}

@keyframes circuitMove {
    0% {
        transform: translateX(-100%) rotate(0deg);
    }
    100% {
        transform: translateX(100%) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .fas.fa-chevron-right {
    font-size: 10px;
    opacity: 0.7;
}

.breadcrumb .current {
    color: var(--accent);
    font-weight: 600;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 90, 185, 0.15);
    border-color: var(--primary);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(360deg);
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-info {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1.4;
}

.contact-note {
    color: var(--gray-dark);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-action:hover {
    background: white;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 90, 185, 0.2);
}

/* Contact Content Section */
.contact-content-section {
    padding: 80px 0;
    background: white;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray-dark);
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group label i {
    color: var(--primary);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 90, 185, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary);
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

.privacy-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 90, 185, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Map Container */
.contact-map-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
    display: block;
    border: none;
}

.facilities-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.facility {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-dark);
    font-size: 14px;
}

.facility i {
    color: var(--primary);
    font-size: 16px;
    width: 20px;
}

.business-hours {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.business-hours h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-hours h3 i {
    color: var(--primary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .day {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.hour-item .time {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.support-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 90, 185, 0.15);
    border-color: var(--primary);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    transition: transform 0.3s ease;
}

.support-card:hover .support-icon {
    transform: scale(1.1);
}

.support-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.support-hours,
.support-desc,
.support-note {
    color: var(--gray-dark);
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.support-phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
}

.support-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    margin-top: 15px;
}

.support-action:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 90, 185, 0.2);
}

.support-action.emergency {
    background: #dc3545;
}

.support-action.emergency:hover {
    background: #c82333;
}

.support-action.appointment {
    background: #28a745;
}

.support-action.appointment:hover {
    background: #218838;
}

/* FAQ Preview Section */
.faq-preview-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 50px auto 40px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 90, 185, 0.1);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.4;
}

.faq-item p {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

.view-all-faq {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.view-all-faq:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 90, 185, 0.3);
}

.text-center {
    text-align: center;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-dark);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f8f9fa;
    color: var(--dark);
}

.modal-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-contact-grid,
    .support-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .facilities-info {
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        margin-top: 80px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .contact-card,
    .support-card,
    .faq-item {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
}

/* Animation for form submission */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success message styles */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.success-message.show {
    display: block;
}

/* Error message styles */
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin-bottom: 20px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.error-message.show {
    display: block;
}



/* guides.css - Kılavuzlar Sayfası Özel Stilleri */

/* Hero Section */
.guides-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.guides-hero .page-hero-content {
    position: relative;
    z-index: 2;
}

/* Filter Section */
.guides-filter-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.filter-header {
    text-align: center;
    margin-bottom: 40px;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 250px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a5ab9;
    font-weight: 600;
    font-size: 14px;
}

.filter-group label i {
    margin-right: 8px;
}

.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-select:focus {
    border-color: #1a5ab9;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 90, 185, 0.1);
}

.filter-search {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-search:focus {
    border-color: #1a5ab9;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 90, 185, 0.1);
}

/* Guides Grid */
.guides-grid-section {
    padding: 80px 0;
    background: white;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.guide-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 90, 185, 0.15);
    border-color: #1a5ab9;
}

.guide-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.guide-badge {
    display: flex;
    gap: 8px;
}

.badge-category,
.badge-language {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-category {
    background: #1a5ab9;
    color: white;
}

.badge-language {
    background: #00d4ff;
    color: #333;
}

.guide-icon {
    font-size: 36px;
    color: #1a5ab9;
    transition: transform 0.3s ease;
}

.guide-card:hover .guide-icon {
    transform: scale(1.2) rotate(5deg);
}

.guide-card-content {
    padding: 20px;
}

.guide-card h3 {
    margin: 0 0 10px;
    color: #333;
    font-size: 20px;
    font-weight: 700;
}

.guide-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.guide-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.guide-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 13px;
}

.guide-info i {
    color: #1a5ab9;
}

.guide-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guide-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 13px;
}

.guide-features i {
    color: #4CAF50;
    font-size: 12px;
}

.guide-card-footer {
    display: flex;
    padding: 0 20px 20px;
    gap: 10px;
}

.guide-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.preview-btn {
    background: #f8f9fa;
    color: #1a5ab9;
    border: 1px solid #1a5ab9;
}

.preview-btn:hover {
    background: #1a5ab9;
    color: white;
}

.download-btn {
    background: #1a5ab9;
    color: white;
}

.download-btn:hover {
    background: #0d3a8a;
    transform: translateY(-2px);
}

.video-guide {
    border: 2px solid #ff0000;
}

.video-guide:hover {
    border-color: #ff0000;
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.15);
}

.video-btn {
    background: #ff0000;
    color: white;
    width: 100%;
}

.video-btn:hover {
    background: #cc0000;
}


/* CTA Section */
.guides-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a5ab9 0%, #0d3a8a 100%);
    color: white;
    text-align: center;
}

.guides-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.guides-cta .cta-icon {
    font-size: 60px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.guides-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.guides-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.guides-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    color: #1a5ab9;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.guides-cta .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .guides-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .guides-hero {
        padding: 80px 0 60px;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guide-card-footer {
        flex-direction: column;
    }
    
    .guide-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .guide-card-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .guide-badge {
        width: 100%;
        justify-content: center;
    }
    
    .guide-icon {
        align-self: center;
    }
}




/* blog.css - Blog Sayfası Özel Stilleri */

/* Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero .page-hero-content {
    position: relative;
    z-index: 2;
}

/* Featured Posts */
.featured-posts {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    color: #1a5ab9;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-description {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.featured-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 90, 185, 0.15);
}

.featured-large {
    grid-row: span 2;
}

.featured-post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #1a5ab9;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-category {
    background: #00d4ff;
    color: #333;
}

.featured-post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 13px;
    color: #666;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #1a5ab9;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #0d3a8a;
    transform: translateY(-2px);
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.featured-small .featured-post-image {
    height: 150px;
}

.featured-small .featured-post-content {
    padding: 20px;
}

.featured-small .post-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #1a5ab9;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #0d3a8a;
    gap: 10px;
}

/* Blog Content */
.blog-content {
    padding: 80px 0;
    background: white;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Blog Filter */
.blog-filter {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tab {
    padding: 8px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: #1a5ab9;
    color: #1a5ab9;
}

.filter-tab.active {
    background: #1a5ab9;
    border-color: #1a5ab9;
    color: white;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 90, 185, 0.15);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #666;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post .post-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-post .post-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 4px 10px;
    background: #f8f9fa;
    color: #666;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #1a5ab9;
    color: white;
}

.post-read-more {
    color: #1a5ab9;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.post-read-more:hover {
    color: #0d3a8a;
}


/* yansayfalar.css dosyasına ekleyin - mevcut .blog-pagination stilini değiştirin */

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #e0e0e0;
}

.pagination-btn {
    padding: 12px 24px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #1a5ab9;
    color: #1a5ab9;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 90, 185, 0.1);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pagination-number:hover:not(.active):not(.dots) {
    border-color: #1a5ab9;
    color: #1a5ab9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 90, 185, 0.1);
}

.pagination-number.active {
    background: linear-gradient(135deg, #1a5ab9 0%, #0d3a8a 100%);
    border-color: #1a5ab9;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(26, 90, 185, 0.2);
}

.pagination-number.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #00d4ff;
    border-radius: 0 0 8px 8px;
}

.pagination-number.dots {
    border: none;
    background: transparent;
    cursor: default;
    width: 20px;
    color: #999;
}

.pagination-number.dots:hover {
    border: none;
    color: #999;
    transform: none;
    box-shadow: none;
}

.pagination-info {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .blog-pagination {
        flex-direction: column;
        gap: 20px;
    }
    
    .pagination-numbers {
        order: 2;
    }
    
    .pagination-btn {
        min-width: 100%;
        max-width: 300px;
    }
    
    .pagination-info {
        order: 1;
        position: static;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .pagination-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .pagination-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-form input:focus {
    border-color: #1a5ab9;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 90, 185, 0.1);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    background: #1a5ab9;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #0d3a8a;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item:hover {
    color: #1a5ab9;
    padding-left: 10px;
}

.category-item.active {
    color: #1a5ab9;
    font-weight: 600;
}

.category-count {
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.category-item.active .category-count {
    background: #1a5ab9;
    color: white;
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.recent-post:hover {
    transform: translateX(5px);
    border-color: #e0e0e0;
    background: #f8f9fa;
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post:hover .recent-post-image img {
    transform: scale(1.1);
}

.recent-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recent-post-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    font-weight: 600;
}

.recent-post-content .post-date {
    font-size: 12px;
    color: #666;
}

/* Newsletter Widget */
.widget-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #1a5ab9;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 90, 185, 0.1);
}

.newsletter-btn {
    padding: 12px;
    background: #1a5ab9;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #0d3a8a;
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d3a8a 0%, #1a5ab9 100%);
    color: white;
    text-align: center;
}

.newsletter-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-cta .cta-icon {
    font-size: 60px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.newsletter-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.newsletter-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    color: #1a5ab9;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-cta .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-large {
        grid-row: auto;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-post-image {
        height: 200px;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    
}

@media (max-width: 480px) {
    .post-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .recent-post {
        flex-direction: column;
    }
    
    .recent-post-image {
        width: 100%;
        height: 120px;
    }
}

/* Animation for category click */
@keyframes categoryClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.category-item.active {
    animation: categoryClick 0.3s ease;
}

/* Remove tags from blog posts */
.post-tags {
    display: none;
}


