:root {
    /* Updated Color Palette */
    --primary-blue: #0d6efd;
    --secondary-accent: #ffc107;
    --heading-color: #0a1f44;
    --text-color: #333;
    --text-light: #6c757d;
    --background-light: #f0f4f8; /* Softer background */
    --border-color: #dee2e6;
    --card-background: #fff;
    --shadow-light: rgba(0, 0, 0, 0.08); /* More pronounced shadow */
    --shadow-medium: rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-family-base: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --line-height-base: 1.7;
    --header-height: 80px;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    background-color: var(--background-light);
    color: var(--text-color);
    line-height: var(--line-height-base);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-base);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0.75em;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 19px; }

p {
    margin-top: 0;
    margin-bottom: 1em;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #0056b3;
}

.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* --- HEADER --- */
.main-header {
    background-color: #f7f9fc;
    padding: 15px 0;
    border-bottom: 1px solid #e2eaf0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px var(--shadow-light);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding-bottom: 5px;
}
.main-nav ul li.active a {
    color: #0d6efd; /* Vurgulanan menü öğesi için yeni renk */
    font-weight: bold;
}
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-info .help-text {
    font-size: 12px;
    color: var(--text-light);
}

.contact-info .phone-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
}

.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--heading-color);
    transition: transform 0.3s ease;
}

.mobile-menu-icon:hover {
    transform: scale(1.1);
}
/* Mobil menüyü başlangıçta varsayılan olarak gizleriz */
/* Masaüstü görünümü için varsayılan stil */
.main-nav,
.contact-info {
    display: block;
}

/* Mobil menü ve ikonları varsayılan olarak gizle */
.mobile-nav,
.mobile-menu-icon,
.overlay {
    display: none;
}

/* Mobil menüyü açmak için gereken stil */
.mobile-nav.is-active {
    left: 0;
}

.overlay.is-active {
    display: block;
}

/* --- RESPONSIVE TASARIM (MOBİL CİHAZLAR İÇİN) --- */
@media (max-width: 992px) {
/* Masaüstü menüyü gizle, ancak iletişim bilgisini göstermeye devam et */
.main-nav {
display: none;
}

/* Mobil menü ikonunu göster */
.mobile-menu-icon {
display: block;
}

/* .contact-info'yu artık gizlemiyoruz. */
.contact-info {
display: block; /* Bizi Arayın kısmını mobil cihazlarda da gösterir */
}

/* Mobil menüyü pozisyonlandır ve gizle */
.mobile-nav {
display: block;
position: fixed;
top: 0;
left: -509px;
width: 280px;
height: 100%;
background-color: var(--card-background);
box-shadow: 2px 0 10px rgba(0,0,0,0.15);
padding: 20px;
border-right: 1px solid #f0f0f0;
z-index: 1001;
transition: left 0.4s ease-in-out;
overflow-y: auto;
}

.overlay {
display: none; /* Overlay'i mobilde başlat */
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1000;
}
}
.mobile-nav .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-nav .close-btn:hover {
    color: var(--primary-blue);
    transform: rotate(90deg);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.overlay.is-active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-nav ul li {
    width: 100%;
    margin-bottom: 5px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 600;
    font-size: 16px;
    padding: 15px;
    display: block;
    width: 100%;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
    background-color: var(--background-light);
    color: var(--primary-blue);
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(135deg, var(--background-light) 0%, #e0eaf4 100%);
    padding: 10px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out;
}
/* --- HİZMET KARTLARI DETAİL (YENİLENMİŞ TASARIM) --- */
.service-categories-detail {
    padding: 80px 0;
    background-color: var(--background-light); 
}

/* Esnek ve dinamik grid yapısı */
.categories-grid-detail-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px; /* Boşluğu 50px'e yükselttik */
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Her bir sigorta kartının ana stili */
.service-card-detail {
    background-color: var(--card-background);
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
    padding: 10px; 
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    will-change: transform, box-shadow;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid #e0eaf4;
    transform: perspective(1000px) rotateX(0deg); 
}

/* Hover efekti: Kartın 3D olarak dönmesi ve gölgenin derinleşmesi */
.service-card-detail:hover {
    transform: perspective(1000px) rotateX(2deg) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); 
    border-color: var(--primary-blue);
}

/* Kartın arka planına soyut bir desen */
.service-card-detail::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
}

.service-card-detail:hover::before {
    width: 200%;
    height: 200%;
    opacity: 1;
}

/* İkonun stili ve hover efekti */
.service-card-detail .card-icon-detail {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-card-detail .card-icon-detail img {
    height: 75px; 
    width: auto;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Başlık ve paragraf stilleri */
.service-card-detail h2 {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--heading-color);
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card-detail:hover h2 {
    color: var(--primary-blue);
}

.service-card-detail p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Linkin tüm kart alanını kaplaması */
.service-card-detail a.card-link-detail {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
/* --- HİZMET KARTLARI --- */
.service-categories {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px var(--shadow-medium);
}

.service-card .card-icon {
    margin-bottom: 20px;
}

.service-card .card-icon img {
    height: 50px;
    width: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}

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

.service-card h2 {
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 0;
}

.service-card a.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* --- NEDEN BİZ BÖLÜMÜ --- */
.why-us-section {
    padding: 80px 0;
    background-color: #f7f9fc; /* A more spacious background color */
    text-align: center;
}

.why-us-section h2 {
    margin-bottom: 60px;
    font-size: 36px;
    color: var(--heading-color);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.why-us-card {
    background-color: var(--card-background);
    padding: 40px;
    border-radius: 16px; /* More rounded corners */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* Soft initial shadow */
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border 0.4s ease;
    border: 1px solid transparent; /* Transparent border by default */
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.why-us-card:hover {
    transform: translateY(-12px); /* More pronounced upward movement */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); /* Deepening shadow effect */
    border-color: var(--primary-blue); /* Adding a blue border */
}

/* Highlight line at the top of the card */
.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, #3a8ee0 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.why-us-card .card-icon img {
    height: 70px;
    transition: transform 0.4s ease;
}

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

.why-us-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-us-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* --- NEWLY ADDED ANIMATIONS --- */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- OFFER SECTION (Asymmetric layout) --- */
.offer-section {
    background-color: var(--background-light);
    padding: 100px 0;
}

.offer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.offer-text-column {
    flex: 1;
    text-align: left;
}

.offer-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-text-column h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.offer-text-column p {
    font-size: 16px;
    color: var(--text-light);
    line-height: var(--line-height-base);
    margin-bottom: 35px;
}

.offer-section .offer-text-column h2 {
    animation: fadeInRight 1s ease-out;
}

.offer-section .offer-text-column p {
    animation: fadeInRight 1.2s ease-out;
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.secondary-btn:hover::before {
    transform: scaleX(1);
}

.secondary-btn:hover {
    color: #fff;
}

.secondary-btn i {
    margin-left: 10px;
}

.mobile-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.mobile-mockup:hover {
    transform: scale(1.03);
}

/* --- AGREED COMPANIES --- */
.companies-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.companies-section h2 {
    font-size: 2.2em;
    margin-bottom: 50px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    justify-content: center;
}

.company-logo-card {
    background-color: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 4px 10px var(--shadow-light);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--shadow-medium);
}

.company-logo-card img {
    max-width: 90%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.company-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* --- FREQUENTLY ASKED QUESTIONS --- */
.faq-section {
    background-color: var(--background-light);
    padding: 80px 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--card-background);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px var(--shadow-light);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 8px 20px var(--shadow-medium);
    transform: translateY(-5px);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    font-family: var(--font-family-base);
}

.faq-question i {
    color: var(--primary-blue);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
}

.faq-answer h3 {
    font-size: 20px;
    margin-top: 10px;
}

/* --- FOOTER --- */
.footer {
    background-color: #f7f7f7;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin-right: 20px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-blue);
}

.footer-bottom-bar {
    background-color: #f7f7f7;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

.footer-contact .phone-number {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact .phone-number:hover {
    color: #0056b3;
}

.footer-logo img {
    height: 20px;
}

.footer-logo a {
    font-size: 12px;
    color: var(--text-light);
}

.social-icons a {
    color: var(--text-light);
    font-size: 20px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .hero-text h1 { font-size: 40px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }

    .main-nav { display: none; }
    .mobile-menu-icon { display: block; }
    .logo img { height: 50px; }

    .offer-content { flex-direction: column; text-align: center; }
    .offer-text-column, .offer-image-column { max-width: 100%; }
    .mobile-mockup { margin-top: 40px; }

    .companies-grid { grid-template-columns: repeat(3, 1fr); }
    .why-us-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 32px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }

    .categories-grid, .companies-grid, .why-us-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    body { font-size: 15px; }
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }

    .logo img {
        height: 60px;
    }
    .navbar {
        justify-content: space-between;
    }
    .mobile-menu-icon {
        margin-left: 0;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .numbers-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-columns {
        align-items: center;
        text-align: center;
        margin: 20px 0;
    }
    .footer-column {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* --- YENİ BLOG LİSTESİ SAYFALAMA VE GRID DÜZENİ --- */
.blog-list-section {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 40px;
    text-align: center;
}

.blog-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background-color: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    width: 100%;
    padding-top: 56.25%; /* 16:9 oranı */
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: var(--heading-color);
    line-height: 1.4;
}

/* Yeni eklenen açıklama (description) metni için stil */
.blog-card-content p {
    font-size: 14px;
    color: var(--text-light); /* Açıklama için daha açık bir renk */
    line-height: 1.6;
    margin-bottom: 0; /* Alttaki boşluğu kaldır */
    flex-grow: 1; /* Diğer kartlarla aynı hizada kalması için */
}

/* Sayfalama (Pagination) stili */
.pagination-container {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
}

.page-item .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--heading-color);
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-item .page-link:hover {
    background-color: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

.page-item.active .page-link {
    background-color: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    pointer-events: none;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .blog-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid-full {
        grid-template-columns: 1fr;
    }
}
/* --- BREADCRUMB & PAGINATION --- */

.pagination-container {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
}

.page-item .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--heading-color);
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-item .page-link:hover {
    background-color: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

.page-item.active .page-link {
    background-color: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    pointer-events: none;
}
.breadcrumb-section {
    background-color: #f0f4f8;
    padding: 20px 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-item {
    text-decoration: none;
    color: var(--text-light);
}

.breadcrumb-item:hover {
    color: var(--primary-blue);
}

.breadcrumb-item::after {
    content: '>';
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb-item.active {
    color: var(--heading-color);
    font-weight: 500;
    pointer-events: none;
}

.breadcrumb-item.active::after {
    content: '';
    margin: 0;
}

.pagination-container {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
}

.page-item .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--heading-color);
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-item .page-link:hover {
    background-color: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

.page-item.active .page-link {
    background-color: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    pointer-events: none;
}

.page-item.disabled .page-link {
    color: #ccc;
    background-color: #f8f9fa;
    pointer-events: none;
    border-color: var(--border-color);
}


/* --- BLOG DETAIL PAGE --- */
/* Main Text Container */
.blog-post {
    font-family: 'Poppins', sans-serif;
    color: #495057;
    line-height: 1.8;
    font-size: 17px;
}

/* General Style for all Content Cards */
.blog-post h1,
.blog-post h2,
.blog-post h3,
.blog-post p,
.blog-post ul,
.blog-post ol,
.blog-post blockquote,
.blog-post table,
.blog-post img {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post h1:hover,
.blog-post h2:hover,
.blog-post h3:hover,
.blog-post p:hover,
.blog-post ul:hover,
.blog-post ol:hover,
.blog-post blockquote:hover,
.blog-post table:hover,
.blog-post img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Heading Styles */
.blog-post h1,
.blog-post h2,
.blog-post h3 {
    font-weight: 700;
    color: #0a1f44;
    padding: 30px;
}

.blog-post h2 {
    font-size: 32px;
    border-left: 6px solid #0d6efd;
    border-radius: 0 12px 12px 0;
    background-color: #f7f9fc;
}

.blog-post h3 {
    font-size: 24px;
    color: #0d6efd;
    border-left: 6px solid #ffc107;
    border-radius: 0 12px 12px 0;
    background-color: #fcfcfc;
}

/* Paragraph Styles */
.blog-post p {
    font-size: 17px;
    line-height: 1.8;
}

/* List Styles (Your Preferred Design) */
.blog-post ul,
.blog-post ol {
    list-style: none;
    padding: 25px;
}

.blog-post ul li,
.blog-post ol li {
    margin-bottom: 12px;
    line-height: 1.6;
    padding-left: 30px;
    position: relative;
}

/* Custom icon and line for Ul */
.blog-post ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 100%;
    background-color: #0d6efd;
    border-radius: 3px;
}

.blog-post ul li strong {
    color: #0d6efd;
}

/* Numbering and highlight for Ol */
.blog-post ol li {
    font-weight: 600;
    color: #0a1f44;
}

.blog-post ol li::marker {
    color: #ffc107;
    font-size: 20px;
    font-weight: 800;
}

/* Table Styles */
.blog-post table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f7f9fc;
    border: none;
}

.blog-post table th,
.blog-post table td {
    border: 1px solid #d1d9e6;
    padding: 20px;
    text-align: left;
}

.blog-post table th {
    background-color: #e9f2ff;
    font-weight: 700;
    color: #0a1f44;
}

.blog-post table tr:nth-child(even) {
    background-color: #fcfcfc;
}

/* Blockquote Styles */
.blog-post blockquote {
    font-style: italic;
    font-size: 1.25rem;
    color: #6c757d;
    border-left: 5px solid #ffc107;
    background-color: #fff8f0;
    padding: 30px;
}

/* Image Styles */
.blog-post img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border: none;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Custom Definitions */
.info-box {
    background-color: #e9f2ff;
    border: 1px solid #0d6efd;
    border-left: 6px solid #0d6efd;
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
}

.cta-box {
    text-align: center;
    background-color: #0d6efd;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
}

.cta-box h3 {
    color: #fff;
    margin-bottom: 15px;
    border-left: none;
    background: none;
}

.cta-box a.btn {
    background-color: #ffc107;
    color: #0a1f44;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-share span {
    font-weight: 500;
}

.social-share a {
    color: var(--text-light);
    font-size: 16px;
}

.social-share a:hover {
    color: var(--primary-blue);
}

.sidebar-widget {
    background-color: var(--card-background);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    color: var(--heading-color);
}

.search-form {
    display: flex;
}

.search-form input {
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.search-form button {
    border: 1px solid var(--primary-blue);
    background-color: var(--primary-blue);
    color: #fff;
    padding: 0 15px;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
}

.recent-posts, .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li, .category-list li {
    margin-bottom: 12px;
}

.recent-posts a, .category-list a {
    text-decoration: none;
    color: var(--text-light);
}

.recent-posts a:hover, .category-list a:hover {
    color: var(--primary-blue);
}


/* --- ABOUT US PAGE --- */
/* --- CORPORATE PAGE SPECIAL STYLES --- */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--background-light) 0%, #e0eaf4 100%);
    text-align: center;
    padding: 80px 20px;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: pulseBackground 25s infinite;
    z-index: 1;
}

/* Company Story and Mission/Vision Section */
.company-story {
    padding: 80px 15px;
}

.story-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 50px;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

/* Color line effect on H2 headings */
.story-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 5px;
    background-color: var(--primary-blue);
    border-radius: 5px;
}

/* --- Value List Style Improvements --- */
.company-story ul {
    list-style: none; /* Removes default list markers */
    padding: 0;
    margin: 0;
    display: grid;
    /* responsive grid layout */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px; /* Adjusts spacing between list items */
}

.company-story li {
    background-color: #fcfcfc;
    border: 1px solid #e0eaf4;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
    height: 100%; /* Adjusts height based on content */
    display: flex;
    flex-direction: column;
}

.company-story li:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.company-story li strong {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: block; /* Places the title on a single line */
    position: relative;
    padding-left: 15px; /* Adds space to the left of the title */
}

/* Adds a colored line to the left of headings */
.company-story li strong::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
    background-color: var(--secondary-accent);
    border-radius: 2px;
}

.company-story li p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-top: 0; /* Adjusts the space between title and paragraph */
}

/* Call to Action Section */
.cta-bolumu {
    background-color: #e9f2ff;
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: scaleIn 0.8s ease-out;
}

.cta-bolumu h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
}

.cta-bolumu p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-color);
}

/* Button Styles */
.btn.primary-btn {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px; /* More modern button */
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}
@media (max-width: 576px) {
  .btn.primary-btn {
    padding: 12px 25px; /* Adjust padding for smaller screens */
    font-size: 14px; /* Reduce font size */
    text-align: center; /* Ensure text is centered */
    width: auto; /* Remove fixed width if any */
    display: block; /* Make it a block-level element to take full width */
  }
}

.btn.primary-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* New Animations */
@keyframes pulseBackground {
    0% { transform: scale(1) translate(-50%, -50%); opacity: 0.2; }
    50% { transform: scale(1.1) translate(-50%, -50%); opacity: 0.3; }
    100% { transform: scale(1) translate(-50%, -50%); opacity: 0.2; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.our-values {
    background-color: var(--background-light);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--card-background);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.value-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.our-numbers {
    background-color: var(--primary-blue);
    padding: 60px 0;
    color: #fff;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.stat-item .stat-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
}

.stat-item .stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.team-section {
    padding: 80px 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-card p {
    color: var(--text-light);
}

/* --- CONTACT PAGE (UPDATED DESIGN) --- */
.page-container {
    padding-top: 60px;
    padding-bottom: 80px;
}

.page-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--heading-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* Adds an underline animation to the page title */
.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

.contact-main {
    display: flex;
    gap: 40px;
    background-color: var(--card-background);
    padding: 50px;
    border-radius: 20px; /* More rounded corners */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); /* More pronounced shadow */
    align-items: stretch;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45%;
}

.contact-map {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-block {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f7f9fc;
    border-radius: 12px;
    border: 1px solid #e0eaf4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.contact-block p, .contact-block dd {
    color: var(--text-light);
    line-height: 1.7;
    margin-left: 0;
}

.contact-block dt {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-col {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    border: 1px solid #e0eaf4;
}

.info-col dt {
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.info-col dd {
    color: var(--text-light);
    margin-left: 0;
    margin-bottom: 15px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .contact-main {
        flex-direction: column;
    }

    .contact-details, .contact-map {
        width: 100%;
    }

    .contact-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .contact-main {
        padding: 30px;
        gap: 20px;
    }

    .info-grid {
        flex-direction: column;
        gap: 20px;
    }
}


/* --- PRODUCT DETAIL PAGE --- */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.highlight-slogan {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 30px;
    display: inline-block;
    border-bottom: 5px solid #ffc107;
    padding-bottom: 5px;
}

.product-content ul {
    list-style: none; /* Removes default list markers */
    padding: 0;
    margin: 0;
    display: grid;
    /* responsive grid layout */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px; /* Adjusts spacing between list items */
}

.product-content ul li {
    background-color: #fcfcfc;
    border: 1px solid #e0eaf4;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
    height: 100%; /* Adjusts height based on content */
    display: flex;
    flex-direction: column;
}

.product-content li:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.product-content li strong {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: block; /* Places the title on a single line */
    position: relative;
    padding-left: 15px; /* Adds space to the left of the title */
}

/* Adds a colored line to the left of headings */
.product-content li strong::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
    background-color: var(--secondary-accent);
    border-radius: 2px;
}

.product-content li p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-top: 0; /* Adjusts the space between title and paragraph */
}


.product-form-card {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.form-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.form-toggle label {
    font-weight: 600;
    font-size: 16px;
    color: var(--heading-color);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-blue);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.form-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
}

.form-info-link {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--primary-blue);
    text-decoration: none;
    margin-bottom: 20px;
}

.btn-primary {
    width: 100%;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.section-divider {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 60px 0;
}

.product-how-to h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-how-to .step {
    margin-top: 30px;
}

.product-how-to .step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-how-to ul {
    list-style-type: disc;
    padding-left: 20px;
}


/* --- FAQ (Frequently Asked Questions) --- */
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--card-background);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
    font-family: var(--font-family-base);
}

.faq-question i {
    color: var(--primary-blue);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer > *:last-child {
    margin-bottom: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}


/* --- RESPONSIVE DESIGN (MEDIA QUERIES) --- */
@media (max-width: 992px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }

    .main-nav {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
        margin-left: 20px;
    }
    .navbar {
        justify-content: space-between;
    }
    .header-right {
        gap: 15px;
    }

    .invite-card {
        position: static;
        transform: none;
        margin: 30px auto 0;
        width: 100%;
        max-width: 400px;
    }
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .categories-grid-detail {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .offer-content {
        flex-direction: column;
        text-align: center;
    }
    .offer-text-column,
    .offer-image-column {
        max-width: 100%;
    }
    .mobile-mockup {
        margin-top: 50px;
        max-width: 80%;
    }
    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .blog-detail-container {
        flex-direction: column;
    }
    .blog-post, .sidebar {
        width: 100%;
        max-width: none;
    }
    .post-title {
        font-size: 22px;
    }
    .blog-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .company-story, .contact-main {
        flex-direction: column;
    }
    .values-grid, .info-grid {
        grid-template-columns: 1fr;
    }
    .numbers-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .product-detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.8em; }

    .phone-number {
        font-size: 16px;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .offer-section {
        padding: 60px 0;
    }
    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    .footer-top, .footer-columns, .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-contact {
        text-align: left;
        margin-top: 20px;
    }
    .footer-trust-seals {
        justify-content: flex-start;
    }
    .footer-bottom-bar {
        text-align: center;
        align-items: center;
    }
    .footer-bottom-bar .partner-links {
        margin-top: 10px;
    }
    .blog-container {
        grid-template-columns: 1fr;
    }
    .featured-card {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    body { font-size: 15px; }
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }

    .logo img {
        height: 60px;
    }

    .navbar {
        justify-content: space-between;
    }
    .mobile-menu-icon {
        margin-left: 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .numbers-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.btn-open-dialog {
            background-color: var(--primary-blue);
            color: white;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s;
        }
        .btn-open-dialog:hover { background-color: #0056b3; transform: translateY(-2px); }

        /* Dialog (Modal) Stil Kuralları */
        .dialog-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .dialog-box {
            background: var(--card-background);
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            width: 90%;
            max-width: 500px;
            position: relative;
            animation: fadeIn 0.4s ease-out;
        }
        .dialog-box .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.3s;
        }
        .dialog-box .close-btn:hover { color: var(--primary-blue); }

        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-weight: 600; margin-bottom: 8px; }
        .form-group input, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-sizing: border-box;
        }
        .btn-submit {
            width: 100%;
            padding: 15px;
            background-color: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .btn-submit:hover { background-color: #0056b3; }