.cookie-links {
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cookie-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.cookie-links a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

:root {
    --primary: #003087;
    --secondary: #FF6B00;
    --light: #f8f9fa;
    --dark: #343a40;
    --gray: #6c757d;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.logo {
    color: var(--white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-image {
    height: 50px;
    margin-bottom: 5px;
}

.logo span {
    color: var(--secondary);
}

.navigation ul {
    display: flex;
    list-style: none;
}

.navigation li {
    margin-left: 1.5rem;
}

.navigation a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.navigation a:hover {
    color: var(--secondary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    background: linear-gradient(rgba(0, 48, 135, 0.8), rgba(0, 48, 135, 0.9)), url('/api/placeholder/1200/600') center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 56px;
    padding: 2rem 0;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #e55c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 1rem auto 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--secondary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-intro {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.product-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-description {
    flex: 1;
    min-width: 300px;
}

.product-description h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-highlights {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.product-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--secondary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.tab-container {
    margin: 2rem 0;
}

.tab-navigation {
    display: flex;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-button {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.tab-button.active {
    color: var(--primary);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--secondary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.application-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.application-content {
    padding: 1.5rem;
}

.application-content h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: -35px;
    width: 2px;
    background-color: #e9ecef;
    z-index: 1;
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
}

.step-content {
    background-color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    background-color: var(--primary);
    padding: 2rem;
    color: var(--white);
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    opacity: 0.8;
}

.pricing-details {
    padding: 2rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item-bold {
    font-weight: 600;
    color: var(--primary);
}

.total-price {
    background-color: #f8f9fa;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    background-color: var(--primary);
    padding: 2.5rem;
    color: var(--white);
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    margin-right: 1rem;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary);
}

.contact-buttons {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-buttons h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-buttons p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.call-btn {
    background-color: var(--primary);
    color: var(--white);
}

.whatsapp-btn {
    background-color: #25D366;
    color: var(--white);
}

.btn-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.btn-text {
    font-size: 1.1rem;
}

/* Fixed Mobile Navigation */
.mobile-fixed-nav {
    display: none;
}

@media (max-width: 992px) {
    .mobile-fixed-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 10px 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        justify-content: center;
        overflow-x: auto;
    }

    .mobile-nav-item {
        flex: 0 0 auto;
        text-align: center;
        padding: 10px 15px;
        color: var(--primary);
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 500;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 70px;
    }

    .mobile-nav-icon {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    #backToTop {
        bottom: 80px;
    }

    .footer-links-legal {
        padding-bottom: 60px;
    }
}

footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links-legal a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

@media (max-width: 576px) {
    .footer-links-legal {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background-color: var(--secondary);
}

.video-slider {
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
}

.video-container {
    display: flex;
    transition: transform 0.5s ease;
}

.video-item {
    flex: 0 0 33.333%;
    padding: 0 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 225px;
    background: linear-gradient(135deg, #003087 0%, #001a4d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-title-overlay {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transform: none;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.play-button {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s, background-color 0.3s;
}

.video-item:hover .play-button {
    transform: scale(1.1);
    background-color: var(--secondary);
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid white;
    margin-left: 5px;
    z-index: 3;
}

.video-title {
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-arrow:hover {
    background-color: var(--secondary);
}

.prev-arrow {
    margin-left: 10px;
}

.next-arrow {
    margin-right: 10px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal.open {
    display: flex;
}

.modal-content {
    width: 90%;
    max-width: 800px;
    background-color: var(--white);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Cookie Button & Modal */
.cookie-button {
    position: fixed;
    right: -45px; /* Sağa doğru daha fazla çıkması için değeri artırıldı */
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px 8px 0 0;
    font-size: 1rem;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cookie-button:hover {
    background-color: var(--secondary);
    transform: translateY(-50%) rotate(-90deg) scale(1.05);
    transform-origin: left center;
}

@media (max-width: 768px) {
    .cookie-button {
        top: 50%;
        right: -45px; /* Mobilde sağa taşmayı artırdık */
        transform: translateY(-50%) rotate(-90deg);
        transform-origin: left center;
        border-radius: 8px 8px 0 0;
        padding: 8px 12px;
        font-size: 0.8rem;
        font-weight: normal;
    }

    .cookie-button:hover {
        transform: translateY(-50%) rotate(-90deg) scale(1.05);
        transform-origin: left center;
    }
}

.cookie-modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--white);
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: var(--primary);
    color: white;
    border-radius: 10px 10px 0 0;
}

.cookie-modal-header h3 {
    color: white;
    margin: 0;
}

.cookie-modal-close {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.cookie-modal-close:hover {
    color: var(--secondary);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cookie-setting-item:last-child {
    border-bottom: none;
}

.cookie-setting-item p {
    margin: 5px 0 0;
    font-size: 0.8rem;
    color: var(--gray);
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

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

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

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

input:checked+.cookie-slider {
    background-color: var(--secondary);
}

input:checked+.cookie-slider:before {
    transform: translateX(26px);
}

.cookie-modal-footer {
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-radius: 0 0 10px 10px;
}

.cookie-modal-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-modal-btn:hover {
    transform: translateY(-2px);
}

.save-btn {
    background-color: var(--primary);
    color: white;
}

.save-btn:hover {
    background-color: #00276e;
}

.accept-all-btn {
    background-color: var(--secondary);
    color: white;
}

.accept-all-btn:hover {
    background-color: #e55c00;
}

.reject-btn {
    background-color: #f8f9fa;
    color: var(--gray);
    border: 1px solid #dee2e6;
}

.reject-btn:hover {
    background-color: #e9ecef;
}

@media (max-width: 992px) {
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .navigation.active {
        display: block;
    }

    .navigation ul {
        flex-direction: column;
    }

    .navigation li {
        margin: 0;
    }

    .navigation a {
        display: block;
        padding: 0.75rem 1.5rem;
    }

    .mobile-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .video-item {
        flex: 0 0 100%;
    }

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

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

@media (max-width: 768px) {
    .header-content {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.6rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .section-title p {
        padding: 0 15px;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .step-content {
        width: 100%;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .pricing-item {
        flex-direction: column;
        text-align: center;
    }

    .pricing-item span {
        margin-bottom: 5px;
    }

    .total-price {
        flex-direction: column;
        text-align: center;
    }

    .total-price span:first-child {
        margin-bottom: 5px;
    }

    .tab-navigation {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-button {
        padding: 0.75rem 1rem;
        margin-bottom: 5px;
    }

    #backToTop {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 15px;
        right: 15px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 400px;
        text-align: center;
        padding: 2rem 15px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .section {
        padding: 3rem 0;
    }

    .feature-card,
    .application-card,
    .step-content,
    .pricing-container,
    .contact-info,
    .contact-form {
        padding: 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .cookie-modal-content {
        width: 95%;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    max-width: 90%;
    width: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-notice-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-notice p {
    margin: 0;
    font-size: 14px;
}

.cookie-notice-btn {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.cookie-notice-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .cookie-notice {
        bottom: 70px;
        /* Mobil menünün üzerine yerleştir */
        padding: 10px 15px;
    }

    .cookie-notice-content {
        gap: 10px;
    }

    .cookie-notice p {
        font-size: 13px;
    }

    .cookie-notice-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Önceki cookie-button stilini kaldırın veya yorum satırına alın */
.cookie-button {
    display: none;
    /* Eski butonu gizle */
}

/* ========== FOTO GALERİ STİLLERİ ========== */
.photo-slider {
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
}

.photo-container {
    display: flex;
    transition: transform 0.5s ease;
}

.photo-item {
    flex: 0 0 25%;
    padding: 0 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.photo-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 200px;
    background-color: #eaeaea;
}

.photo-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-thumbnail img {
    transform: scale(1.05);
}

.photo-item:hover .photo-thumbnail {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.photo-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 2;
    pointer-events: none;
}

.photo-controls .slider-arrow {
    pointer-events: auto;
}

/* Foto Modal Navigasyon */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 48, 135, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s;
    z-index: 10001;
}

.modal-nav:hover {
    background-color: var(--secondary);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

#photoModal .modal-content {
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

#photoModal .modal-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Responsive Foto Galeri */
@media (max-width: 992px) {
    .photo-item {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 768px) {
    .photo-item {
        flex: 0 0 50%;
    }
    
    .photo-thumbnail {
        height: 180px;
    }
    
    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .photo-item {
        flex: 0 0 100%;
    }
    
    .photo-thumbnail {
        height: 220px;
    }
}

/* ========== VIDEO ÖNİZLEME DÜZELTMESİ ========== */
.video-thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.3) 0%, rgba(0, 26, 77, 0.5) 100%);
    z-index: 1;
}