/* ========================================
   CSS RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Renkler - Hibrit Palet (Lacivert + Bordo + Altın) */
    --primary-color: #1a237e;
    /* Lacivert - Header ve arka planlar için */
    --primary-dark: #0d1642;
    /* Koyu lacivert */
    --primary-light: #534bae;
    /* Açık lacivert */

    --burgundy-color: #8B2341;
    /* Bordo - Ana vurgu rengi */
    --burgundy-dark: #6B1830;
    /* Koyu bordo */
    --burgundy-light: #A63D56;
    /* Açık bordo */

    --accent-gold: #d4af37;
    /* Altın */
    --accent-gold-light: #f4d03f;
    /* Açık altın */

    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #0a0e27;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-primary: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header .container {
    max-width: 1400px;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--burgundy-color), var(--burgundy-light));
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    min-width: 250px;
    justify-content: center;
}

.btn-hero-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 2px solid var(--text-white);
    backdrop-filter: blur(10px);
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    min-width: 250px;
    justify-content: center;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-header-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    gap: 0.4rem;
    text-transform: none;
}

/* ========================================
   HEADER / NAVIGATION
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1.5rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    /* Logo ve yazıyı dikey ortala */
    gap: 1rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--font-heading);
    text-decoration: none;
    margin-right: auto;
}

.logo-img {
    height: 45px;
    width: auto;
    mix-blend-mode: lighten;
    /* Koyu arka planı yok eder */
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-text {
    font-size: 1.2rem;
    color: var(--text-white);
    line-height: 1;
}

.logo i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.logo-accent {
    font-size: 0.95rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin-right: 3rem;
    /* Menü ile 'Bize Ulaşın' butonu arası */
}

.nav-link {
    color: var(--text-white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: var(--transition-normal);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(83, 75, 174, 0.1) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-overlay {
    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 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(26,35,126,0.1)"/></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* ========================================
   STATS SECTION
======================================== */
.stats {
    background: var(--bg-white);
    padding: 3rem 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-card i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    color: var(--burgundy-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* Swiper Pagination Fix for Accessibility */
.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    margin: 0 8px !important;
}

.section-subtitle {
    display: inline-block;
    color: #b8860b;
    /* Dark GoldenRod for better contrast */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy-color), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--burgundy-color), var(--burgundy-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.service-title {
    margin-bottom: 1rem;
    color: var(--burgundy-color);
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.925rem;
    color: var(--text-light);
}

.service-link {
    color: var(--accent-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 8rem;
    color: var(--accent-gold);
    opacity: 0.3;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burgundy-color), var(--burgundy-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.info-content h4 {
    color: var(--burgundy-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy-color);
    box-shadow: 0 0 0 3px rgba(139, 35, 65, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none;
    color: var(--text-white);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: lighten;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-right: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   FOOTER ALIGNMENT FIX (CONTACT RIGHT)
   ======================================== */
@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: 28% 18% 18% 36%;
    }
}

/* ========================================
   CUSTOM FORM VALIDATION
   ======================================== */
.form-group {
    position: relative;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    /* Hata kırmızısı */
    background-image: none;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group.error label {
    color: #dc3545;
}

.form-error-message {
    font-size: 0.75rem;
    color: #dc3545;
    margin-top: 5px;
    display: block;
    animation: fadeIn 0.3s ease;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Checkbox Error Style */
.kvkk-container.error .checkbox-wrapper {
    color: #dc3545;
}

.kvkk-container.error .kvkk-box {
    border-color: #dc3545;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered transition delays for grid items */
.services-grid .service-card:nth-child(2),
.values-grid .value-card:nth-child(2) {
    transition-delay: 0.1s;
}

.services-grid .service-card:nth-child(3),
.values-grid .value-card:nth-child(3) {
    transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(4) {
    transition-delay: 0.3s;
}

.services-grid .service-card:nth-child(5) {
    transition-delay: 0.4s;
}

.services-grid .service-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: rgba(30, 30, 30, 0.95);
    color: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    /* JS ile açılacak */
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
    display: flex;
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    flex: 1;
    margin-right: 20px;
}

.cookie-content p {
    margin: 0 0 15px 0;
    line-height: 1.5;
    color: #e0e0e0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept {
    background-color: #008000;
    /* Yeşil */
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-cookie-accept:hover {
    background-color: #006400;
}

.btn-cookie-details {
    background-color: #808080;
    /* Gri */
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.btn-cookie-details:hover {
    background-color: #696969;
}

.cookie-close {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    transition: color 0.3s;
}

.cookie-close:hover {
    color: #fff;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 50px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 35px;
        /* Kapat butonu için yer */
    }

    .cookie-content {
        margin-right: 0;
        width: 100%;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .btn-cookie-accept,
    .btn-cookie-details {
        flex: 1;
        text-align: center;
    }
}

/* ========================================
   SERVICE & BLOG FOOTER NAVIGATION
   ======================================== */
.service-footer .btn-outline-primary,
.blog-footer .btn-outline-primary {
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    background: transparent;
    transition: all 0.3s ease;
    padding: 12px 30px;
}

.service-footer .btn-outline-primary:hover,
.blog-footer .btn-outline-primary:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.service-footer .btn-outline-primary i,
.blog-footer .btn-outline-primary i {
    transition: transform 0.3s ease;
}

.service-footer .btn-outline-primary:hover i,
.blog-footer .btn-outline-primary:hover i {
    transform: translateX(-5px);
}

/* ========================================
   CUSTOM TOAST NOTIFICATION
   ======================================== */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    border-left: 5px solid var(--accent-gold);
    max-width: 400px;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.success {
    border-left-color: #28a745;
}

.toast-notification.error {
    border-left-color: #dc3545;
}

.toast-icon {
    font-size: 1.5rem;
}

.toast-notification.success .toast-icon {
    color: #28a745;
}

.toast-notification.error .toast-icon {
    color: #dc3545;
}

.toast-message {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.toast-close {
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}


/* ========================================
   BLOG CARD GRID FIX
   ======================================== */
.blog-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.blog-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--accent-gold);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-read-more {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}


/* ========================================
   CUSTOM BLOG GRID SYSTEM
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* Tablet (2 Sütun) */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil (1 Sütun) */
@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SEO TAGS
   ======================================== */
.badge-tag {
    display: inline-block;
    background: #f1f3f5;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    margin-right: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.badge-tag:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-2px);
}

/* ========================================
   BLOG TOOLS BAR
======================================== */
.blog-tools-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Filter Styles */
.blog-filter form {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-filter label {
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-filter .select-wrapper {
    position: relative;
    min-width: 200px;
}

.blog-filter select {
    width: 100%;
    padding: 0.8rem 2.5rem 0.8rem 1.2rem;
    border: 1px solid #eee;
    border-radius: 50px;
    background: #f9f9f9;
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.blog-filter select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(83, 75, 174, 0.1);
}

.blog-filter .dropdown-icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    font-size: 0.8rem;
}

/* Search Styles */
.blog-search .search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-search input {
    padding: 0.8rem 1.2rem;
    padding-right: 3rem;
    border: 1px solid #eee;
    border-radius: 50px;
    background: #f9f9f9;
    width: 250px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-search input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(83, 75, 174, 0.1);
    width: 300px;
}

.blog-search button {
    position: absolute;
    right: 5px;
    background: var(--primary-dark);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-search button:hover {
    background: var(--accent-gold);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-tools-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-filter form {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-filter .select-wrapper {
        width: 100%;
    }

    .blog-search .search-wrapper {
        width: 100%;
    }

    .blog-search input {
        width: 100%;
    }

    .blog-search input:focus {
        width: 100%;
    }
}

/* ========================================
   DROPDOWN MENU STYLES
======================================== */
.nav-item.dropdown {
    position: relative;
    padding: 0;
}

.nav-link.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    vertical-align: middle;
}

.nav-link.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-link.dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 320px;
    background: var(--primary-dark);
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
    border-top: 3px solid var(--accent-gold);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--accent-gold);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item i {
    width: 20px;
    font-size: 1.1rem;
    color: var(--accent-gold);
    text-align: center;
    transition: all 0.2s ease;
}

.dropdown-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border-left: 3px solid var(--accent-gold);
    padding-left: 25px;
}

.dropdown-item:hover i {
    color: var(--text-white);
    transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 968px) {
    .nav-item.dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-link.dropdown-toggle {
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        display: none;
        opacity: 1;
        visibility: visible;
        margin-top: 10px;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        transform: none;
    }
}