:root {
    --primary-color: #025a83; 
    --primary-color-low: rgba(2, 90, 131, 0.5);
    --primary-color-dark: #003d5b;

    --secondary-color: #FFC304; 
    --secondary-color-low: rgba(255, 195, 4, 0.5);
    --secondary-color-dark: #b38f00;

    --tertiary-color: #e9ecef;
    --tertiary-color-low: rgba(233, 236, 239, 0.5);
    --tertiary-color-dark: #ced4da;

    --bg-color: #e7e7e7;
    --bg-color-low: rgba(248, 249, 250, 0.5);
    --bg-color-dark: #e4e7eb;

    --text-dark: #343a40;
    --text-dark-low: #495057b9;
    --text-dark-dark: #212529;

    --text-light: #f8f9fa;
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;

    --button-color: #02337c; 
    --button-color-low: rgba(2, 51, 124, 0.5);
    --button-color-dark: #001a4d;

    --card-bg: #fcfcfc;
    --card-bg-low: #f3f2f2;
    --smoothline-color: var(--bg-color);
}


/* ===== LANDING SECTION ===== */
.landing-sec {
    display: flex;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    align-items: center;
    background: #ffffff;
}


.landing-sec .landing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Hero Text Content */
.landing-sec .hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.landing-sec .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(2, 90, 131, 0.06);
    color: var(--primary-color);
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    width: fit-content;
    border: 1px solid rgba(2, 90, 131, 0.08);
    transition: all 0.2s ease;
}

.landing-sec .hero-badge:hover {
    background: rgba(2, 90, 131, 0.08);
}

.landing-sec .hero-badge i {
    font-size: 0.875rem;
}

.landing-sec .hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.landing-sec .title-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.landing-sec .title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    width: 100%;
    height: 0.1em;
    background: var(--primary-color);
    border-radius: 1px;
    opacity: 0.6;
}

.landing-sec .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark-low);
    max-width: 480px;
    margin: 0;
}

.landing-sec .hero-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.landing-sec .primary-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.landing-sec .primary-btn:hover {
    background: var(--primary-color-dark);
    transform: translateY(-1px);
}

.landing-sec .primary-btn i,
.landing-sec .secondary-btn i {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.landing-sec .secondary-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid rgba(2, 90, 131, 0.2);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.landing-sec .secondary-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.landing-sec .hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(2, 90, 131, 0.08);
}

.landing-sec .stat-item {
    text-align: left;
}

.landing-sec .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.landing-sec .stat-label {
    font-size: 0.8rem;
    color: var(--text-dark-low);
    font-weight: 400;
}

.landing-sec .stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(2, 90, 131, 0.15);
}


.landing-sec .background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.landing-sec .bg-gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: radial-gradient(ellipse at top right, 
        rgba(2, 90, 131, 0.3) 0%, 
        rgba(2, 90, 131, 0.2) 30%, 
        rgba(255, 195, 4, 0.03) 60%, 
        transparent 80%);
}

.landing-sec .bg-image-container {
    position: absolute;
    bottom: 0%;
    right: 0%;
    height: 50%;
    width: 50%;
    opacity: 0.15;
}

.landing-sec .bg-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.landing-sec .bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.landing-sec .bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.02;
}

.landing-sec .shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 15%;
    left: 8%;
}

.landing-sec .shape-2 {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    bottom: 20%;
    right: 15%;
}

/* Landing Section Responsive */
@media (max-width: 1200px) {
    .landing-sec .landing-content {
        gap: 2.5rem;
    }
    
    .landing-sec .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .landing-sec .hero-description {
        font-size: 0.95rem;
        max-width: 450px;
    }
    
    .landing-sec .bg-image-container {
        width: 45%;
        height: 45%;
    }
}

@media (max-width: 1024px) {
    .landing-sec {
        padding: 6rem 0 4rem;
        min-height: 90vh;
    }
    
    .landing-sec .landing-content {
        gap: 2rem;
    }
    
    .landing-sec .hero-title {
        font-size: 2.5rem;
        line-height: 1.15;
    }
    
    .landing-sec .hero-description {
        font-size: 0.9rem;
        max-width: 420px;
    }
    
    .landing-sec .primary-btn,
    .landing-sec .secondary-btn {
        padding: 0.7rem 1.1rem;
        font-size: 0.85rem;
    }
    
    .landing-sec .hero-stats {
        gap: 1.25rem;
        margin-top: 0.5rem;
        padding-top: 1.25rem;
    }
    
    .landing-sec .stat-number {
        font-size: 1.35rem;
    }
    
    .landing-sec .stat-label {
        font-size: 0.75rem;
    }
    
    .landing-sec .bg-image-container {
        width: 40%;
        height: 40%;
        right: 2%;
    }
    
    .landing-sec .bg-gradient-overlay {
        width: 55%;
    }
}

@media (max-width: 900px) {
    .landing-sec {
        padding: 5rem 0 3rem;
        min-height: 85vh;
    }
    
    .landing-sec .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .landing-sec .hero-description {
        font-size: 0.85rem;
        max-width: 380px;
        line-height: 1.5;
    }
    
    .landing-sec .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .landing-sec .primary-btn,
    .landing-sec .secondary-btn {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }
    
    .landing-sec .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .landing-sec .stat-number {
        font-size: 1.25rem;
    }
    
    .landing-sec .bg-image-container {
        width: 35%;
        height: 35%;
        opacity: 0.1;
    }
}

@media (max-width: 768px) {
    .landing-sec {
        padding: 4rem 0 2rem;
        min-height: 80vh;
    }
    
    .landing-sec .landing-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .landing-sec .hero-title {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }
    
    .landing-sec .hero-description {
        font-size: 0.9rem;
        max-width: 500px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .landing-sec .hero-badge {
        margin: 0 auto;
        width: fit-content;
    }
    
    .landing-sec .hero-actions {
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .landing-sec .primary-btn,
    .landing-sec .secondary-btn {
        min-width: 140px;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .landing-sec .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1rem;
        padding-top: 1.5rem;
    }
    
    .landing-sec .stat-item {
        text-align: center;
    }
    
    .landing-sec .bg-image-container {
        width: 60%;
        height: 30%;
        bottom: 5%;
        right: 20%;
        opacity: 0.08;
    }
    
    .landing-sec .bg-gradient-overlay {
        width: 80%;
        opacity: 0.3;
    }
}

@media (max-width: 640px) {
    .landing-sec {
        padding: 3rem 0 2rem;
        min-height: 75vh;
    }
    
    .landing-sec .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .landing-sec .hero-description {
        font-size: 0.85rem;
        max-width: 450px;
    }
    
    .landing-sec .hero-actions {
        gap: 0.75rem;
    }
    
    .landing-sec .primary-btn,
    .landing-sec .secondary-btn {
        flex: 1;
        min-width: 120px;
        max-width: 180px;
    }
    
    .landing-sec .hero-stats {
        gap: 1rem;
    }
    
    .landing-sec .stat-number {
        font-size: 1.15rem;
    }
    
    .landing-sec .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .landing-sec {
        padding: 2.5rem 0 1.5rem;
        min-height: 70vh;
    }
    
    .landing-sec .hero-title {
        font-size: 1.6rem;
        line-height: 1.35;
    }
    
    .landing-sec .hero-description {
        font-size: 0.8rem;
        max-width: 400px;
        line-height: 1.5;
    }
    
    .landing-sec .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.65rem;
    }
    
    .landing-sec .hero-actions {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .landing-sec .primary-btn,
    .landing-sec .secondary-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        min-width: unset;
        max-width: unset;
    }
    
    .landing-sec .hero-stats {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: space-around;
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    
    .landing-sec .stat-divider {
        display: none;
    }
    
    .landing-sec .bg-image-container {
        display: none;
    }
    
    .landing-sec .bg-gradient-overlay {
        width: 100%;
        opacity: 0.2;
    }
}

/* ===== ABOUT SECTION ===== */
.about-sec {
    background: var(--bg-color);
    position: relative;

    height: auto;
}
.about-sec {
    padding: 4rem 0;
    background: var(--bg-color);
    position: relative;
}

.about-sec .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-sec .section-header {
    margin-bottom: 3rem;
    width: 100%;
}

.about-sec .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(2, 90, 131, 0.06);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.about-sec .section-badge i {
    font-size: 0.8rem;
}

.about-sec .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
}

.about-sec .section-title span {
    background-color: var(--card-bg);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
}

.about-sec .section-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark-low);
    margin: 0;
}


.about-sec .about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-sec .text-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
}

.about-sec .text-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark-low);
    margin: 0;
}

.about-sec .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.about-sec .feature-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.about-sec .feature-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(2, 90, 131, 0.06);
}

.about-sec .feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(2, 90, 131, 0.1);
    color: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-sec .feature-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.about-sec .feature-text p {
    font-size: 0.8rem;
    color: var(--text-dark-low);
    margin: 0;
    line-height: 1.4;
}

.about-sec .about-visual {
    height: 100%;
    width: 100%;
}

.about-sec .about-visual img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: static;
    top: 0;
    left: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: var(--bg-color);
    position: relative;
    height: auto;
}

.cta-section .cta-card {
    background: rgba(249, 250, 251, 0.8);
    border: 1px solid rgba(2, 90, 131, 0.08);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(2, 90, 131, 0.08);
    backdrop-filter: blur(10px);
}

.cta-section .cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-section .cta-text {
    flex: 1;
}

.cta-section .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(2, 90, 131, 0.08);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(2, 90, 131, 0.1);
    width: fit-content;
}

.cta-section .cta-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
    max-width: 600px;
}

.cta-section .cta-highlight {
    color: var(--primary-color);
    position: relative;
}

.cta-section .cta-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark-low);
    margin: 0;
    max-width: 600px;
}

.cta-section .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    flex-shrink: 0;
}

.cta-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.cta-section .cta-button:hover {
    background: var(--primary-color-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 90, 131, 0.15);
}

.cta-section .cta-button i {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.cta-section .cta-button:hover i {
    transform: translateX(2px);
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 80px 0;
    background: #ffffff;
    height: auto;
    padding-top: 0;
}

.blog-section .container {
    display: flex;
    flex-direction: column;
}

.blog-header {
    text-align: center;
    margin-bottom: 48px;
}

.blog-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.blog-header p {
    font-size: 1rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.6);
    transition: all 0.2s ease;
    position: relative;
}

.blog-card:hover {
    border-color: rgba(2, 90, 131, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.blog-image-container {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.blog-card:hover .blog-image {
    opacity: 0.9;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: #9ca3af;
}

.blog-category {
    background: rgba(2, 90, 131, 0.08);
    color: #025a83;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.blog-title:hover {
    color: #025a83;
}

.blog-excerpt {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.blog-author {
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: #025a83;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.blog-link:hover {
    color: #0277bd;
}

.blog-link i {
    margin-left: 4px;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.blog-link:hover i {
    transform: translateX(2px);
}


.blog-section-bottom {
    display: flex;
    margin-left: auto;
    gap: 8px;
    
    font-size: 0.9rem;
    margin-top: 16px;
}

.blog-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-left: auto;
    transition: color 0.2s ease;
    width: max-content ;
}

.blog-more-link:hover {
    color: var(--primary-color-dark);
}

.blog-section .blog-footer {
    display: flex;
    padding-top: 24px;
    border-top: 1px solid rgba(229, 231, 235, 0.3);
    margin-top: 32px;
}

@media (max-width: 1200px) {
    .cta-section .cta-title {
        font-size: 2.1rem;
    }
    
    .blog-header h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 1024px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-section .cta-card {
        padding: 2.5rem;
    }
    
    .cta-section .cta-content {
        gap: 2rem;
    }
    
    .cta-section .cta-title {
        font-size: 2rem;
        max-width: 500px;
    }
    
    .cta-section .cta-description {
        font-size: 0.95rem;
        max-width: 500px;
    }
    
    .blog-section {
        padding: 4rem 0;
    }
    
    .blog-header {
        margin-bottom: 3rem;
    }
    
    .blog-header h2 {
        font-size: 2.2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .cta-section {
        padding: 3.5rem 0;
    }
    
    .cta-section .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-section .cta-description {
        font-size: 0.9rem;
    }
    
    .blog-header h2 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section .cta-card {
        padding: 2rem;
        box-sizing: border-box;
    }
    
    .cta-section .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-section .cta-title {
        font-size: 1.8rem;
        max-width: 100%;
        line-height: 1.3;
    }
    
    .cta-section .cta-description {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .cta-section .cta-actions {
        align-items: center;
    }
    
    .cta-section .cta-badge {
        margin: 0 auto;
    }
    
    .blog-section {
        padding: 3rem 0;
    }
    
    .blog-header {
        margin-bottom: 2.5rem;
    }
    
    .blog-header h2 {
        font-size: 1.8rem;
    }
    
    .blog-header p {
        font-size: 0.9rem;
        max-width: 450px;
    }
    
    /* Mobilde Flickity için blog grid */
    .blog-grid {
        display: block;
    }
    
    .blog-grid.flickity-enabled {
        overflow: visible;
    }
    
    .blog-card {
        width: 85%;
        min-width: 280px;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    /* Flickity dots styling */
    .blog-grid .flickity-page-dots {
        margin-top: 2rem;
        text-align: center;
    }
    
    .blog-grid .flickity-page-dots .dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
        background: rgba(2, 90, 131, 0.3);
        border-radius: 50%;
        transition: all 0.2s ease;
    }
    
    .blog-grid .flickity-page-dots .dot.is-selected {
        background: var(--primary-color);
        transform: scale(1.2);
    }
}

@media (max-width: 640px) {
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .cta-section .cta-card {
        padding: 1.75rem;
    }
    
    .cta-section .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-section .cta-description {
        font-size: 0.75rem;
    }
    
    .cta-section .cta-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        display: none;
    }
    
    .blog-section {
        padding: 2.5rem 0;
    }
    
    .blog-header h2 {
        font-size: 1.6rem;
    }
    
    .blog-header p {
        font-size: 0.85rem;
        max-width: 400px;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .blog-excerpt {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Mobil Flickity kartları için ayarlamalar */
    .blog-card {
        width: 82%;
        min-width: 260px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-section .cta-card {
        padding: 1.5rem;
    }
    
    .cta-section .cta-title {
        font-size: 1.11rem;
        line-height: 1.4;
    }
    
    .cta-section .cta-description {
        font-size: 0.65rem;
        line-height: 1.5;
    }
    
    .cta-section .cta-button {
        width: 70%;
        justify-content: center;
        padding: 0.575rem 0.5rem;
        font-size: 0.6rem;
        box-sizing: border-box;
    }

    .cta-section .cta-button i {
        font-size: 0.7rem;
    }
    
    .cta-section .cta-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
    
    .blog-section {
        padding: 2rem 0;
    }
    
    .blog-header {
        margin-bottom: 2rem;
    }
    
    .blog-header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .blog-header p {
        font-size: 0.8rem;
        max-width: 350px;
        line-height: 1.4;
    }
      .blog-grid {
        gap: 1.25rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .blog-excerpt {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .blog-meta {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .blog-category {
        font-size: 0.7rem;
        padding: 1px 6px;
    }
    
    .blog-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        padding-top: 0.75rem;
    }
    
    .blog-author {
        font-size: 0.75rem;
    }
    
    .blog-link {
        font-size: 0.75rem;
    }
    
    .blog-section-bottom {
        margin-top: 2.5rem;
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-left: 0;
        text-align: center;

    }

    .blog-section-bottom .blog-more-link {
        margin-left: 0;
    }
    
    /* En küçük ekranlar için Flickity kartları */
    .blog-card {
        width: 80%;
        min-width: 240px;
        margin-right: 0.75rem;
    }
    
    .blog-grid .flickity-page-dots .dot {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
}

/* About Section Responsive */
@media (max-width: 1200px) {
    .about-sec .about-content {
        gap: 2.5rem;
    }
    
    .about-sec .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 1024px) {
    .about-sec {
        padding: 3.5rem 0;
    }
    
    .about-sec .section-header {
        margin-bottom: 2.5rem;
    }
    
    .about-sec .about-content {
        gap: 2rem;
    }
    
    .about-sec .section-title {
        font-size: 2.1rem;
    }
    
    .about-sec .section-description {
        font-size: 0.95rem;
    }
    
    .about-sec .text-block h3 {
        font-size: 1.15rem;
    }
    
    .about-sec .text-block p {
        font-size: 0.9rem;
    }
    
    .about-sec .features-grid {
        gap: 0.75rem;
    }
    
    .about-sec .feature-item {
        padding: 0.875rem;
    }
}

@media (max-width: 900px) {
    .about-sec {
        padding: 3rem 0;
    }
    
    .about-sec .section-title {
        font-size: 1.9rem;
    }
    
    .about-sec .section-description {
        font-size: 0.9rem;
    }
    
    .about-sec .text-block h3 {
        font-size: 1.1rem;
    }
    
    .about-sec .text-block p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .about-sec {
        padding: 2.5rem 0;
    }
    
    .about-sec .section-header {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .about-sec .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-sec .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .about-sec .section-description {
        font-size: 0.85rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-sec .section-badge {
        margin: 0 auto;
    }
    
    .about-sec .about-text {
        gap: 1.5rem;
        order: 2;
    }
    
    .about-sec .about-visual {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-sec .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 640px) {
    .about-sec {
        padding: 2rem 0;
    }
    
    .about-sec .section-title {
        font-size: 1.6rem;
    }
    
    .about-sec .section-description {
        font-size: 0.8rem;
        max-width: 450px;
    }
    
    .about-sec .text-block h3 {
        font-size: 1rem;
    }
    
    .about-sec .text-block p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .about-sec .feature-item {
        padding: 0.75rem;
    }
    
    .about-sec .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .about-sec .feature-text h4 {
        font-size: 0.85rem;
    }
    
    .about-sec .feature-text p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .about-sec {
        padding: 1.5rem 0;
    }
    
    .about-sec .section-header {
        margin-bottom: 1.5rem;
    }
    
    .about-sec .section-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    
    .about-sec .section-description {
        font-size: 0.75rem;
        max-width: 400px;
    }
    
    .about-sec .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .about-sec .about-text {
        gap: 1.25rem;
    }
    
    .about-sec .text-block h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .about-sec .text-block p {
        font-size: 0.75rem;
        line-height: 1.6;
    }
    
    .about-sec .features-grid {
        margin-top: 0.75rem;
    }
    
    .about-sec .feature-item {
        padding: 0.625rem;
        gap: 0.5rem;
    }
    
    .about-sec .feature-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .about-sec .feature-text h4 {
        font-size: 0.8rem;
    }
    
    .about-sec .feature-text p {
        font-size: 0.7rem;
    }
}
