:root {
    --background-color: #f8fafc;
    --primary-color: #0f766e;
    --border-radius: .25rem;
}

/* Sıkınıt Çıkarsa Sil BAŞLANGIC */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Sıkınıt Çıkarsa Sil SON */

* {
    font-family: 'Poppins', sans-serif;
}

/* Sıkınıt Çıkarsa Sil BAŞLANGIC */

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--background-color);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Sıkınıt Çıkarsa Sil SON */

/* Targeted fix for FAQ icons only - ensures they render properly without affecting other Font Awesome icons */
.faq-icon {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    speak: never !important;
    line-height: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    font-size: 0.875rem;
    color: #6b7280;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-question:hover .faq-icon {
    color: #0f766e;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: #0f766e;
}

.top-banner-navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 30;
}

.top-banner {
    background-color: #374151;
    width: 100%;
    height: 3rem;
    padding: 0;
}

.top-banner-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

@media (min-width: 640px) {
    .top-banner-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .top-banner-container {
        padding: 0 2rem;
    }
}

.top-banner-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.95rem;
}

.top-banner-left i {
    color: #fff;
    font-size: 0.75rem;
}

.top-banner-right {
    display: flex;
    align-items: center;
}

.top-banner-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.top-banner-button:hover {
    background-color: #0d9488;
}

.top-banner-button i {
    font-size: 0.75rem;
}

nav {
    background-color: var(--background-color);
}

@media (max-width: 768px) {
    nav .max-w-7xl {
        padding: 0 1rem;
    }

    nav .h-20 {
        height: 3.5rem;
    }

    nav .text-2xl {
        font-size: 1.25rem;
    }

    nav .h-8 {
        height: 1.5rem;
        width: 1.5rem;
    }
}

.btn-login {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease-out;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-flex;
}

.btn-login i,
.btn-login span {
    position: relative;
    z-index: 2;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background-color: #f3f4f6;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-login::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100%;
    background-color: #f3f4f6;
    transition: right 0.3s ease;
    z-index: -1;
}

.btn-login:hover::before {
    left: 0;
}

.btn-login:hover::after {
    right: 0;
}

.btn-service {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    color: #fff !important;
    padding: .7rem 1.35rem;
    font-weight: 600;
    box-shadow: 0 4px 6px #0000001a;
    transition: all .3s ease;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
}

.btn-service:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    transform: translateY(-1px);
    box-shadow: 0 5px 9px #00000026;
}

.nav-link {
    border-radius: var(--border-radius);
}

.mobile-menu-btn {
    border-radius: var(--border-radius);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.overlay-visible {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background-color: #fff;
    z-index: 50;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-panel.menu-open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    transition: background-color 0.2s;
}

.mobile-menu-close:hover {
    background-color: #f3f4f6;
}

.mobile-menu-content {
    flex: 1;
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-buttons {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-item {
    padding: 1.25rem 1.5rem;
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #e5e7eb;
    background-color: #fff;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-item:hover {
    background-color: #f9fafb;
    color: #111827;
    padding-left: 1.75rem;
}

.hero-section {
    position: relative;
    min-height: 80dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
    padding: 3rem 0;
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 650px;
    background-image: linear-gradient(rgba(0, 0, 0, .04) 1px, transparent 2px), linear-gradient(90deg, rgba(0, 0, 0, .04) 1px, transparent 2px), linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 2px), linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 2px);
    background-position: 50% 50%, 50% 50%, 30% 50%, 50% 50%;
    mask: radial-gradient(ellipse at center, black -1%, rgba(0, 0, 0, .3) 55%, transparent 95%);    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

.hero-container > * {
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .hero-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 0 2rem;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    text-align: left;
}

@media (max-width: 768px) {
    .hero-left {
        text-align: center;
        align-items: center;
    }
}

.hero-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin: 0;
}

.title-highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

.hero-typing-container {
    display: flex;
    align-items: center;
    min-height: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.hero-typing-text {
    display: inline-block;
}

.hero-typing-cursor {
    display: inline-block;
    margin-left: 0.25rem;
    animation: blink 1s infinite;
    color: var(--primary-color);
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-testimonial {
    max-width: 500px;
    position: relative;
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 1rem 1.125rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .hero-testimonial {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.testimonial-quote-mark {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 3rem;
    font-weight: 300;
    color: #e5e7eb;
    line-height: 1;
    font-family: Georgia, serif;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #111827;
    margin: 0 0 0.75rem 0;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-weight: 700;
    color: #111827;
    font-size: 0.8125rem;
}

.author-title {
    color: #6b7280;
    font-size: 0.8125rem;
    font-weight: 400;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0;
}

@media (max-width: 768px) {
    .hero-social-proof {
        justify-content: center;
        width: 100%;
    }
}

.social-proof-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -0.5rem;
    transition: transform 0.2s ease;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-2px);
    z-index: 10;
    position: relative;
}

.social-proof-rating {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .social-proof-rating {
        align-items: center;
    }
}

.rating-stars-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.125rem;
    color: #fbbf24;
    font-size: 0.875rem;
}

.rating-score {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
}

.rating-success {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-right {
        width: 100%;
    }

    .hero-image-wrapper {
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-image {
        max-width: 180px;
        width: 100%;
        height: auto;
    }
}

/* Mobile-specific full screen mockup image */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-right {
        order: -1;
        margin-bottom: 1rem;
    }

    .hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        max-height: 300px;
    }

    /* Make the mockup image more prominent on mobile */
    .hero-image-wrapper img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    background: transparent;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.hero-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.stats-section {
    position: relative;
    padding: 6rem 0 2rem 0;
    width: 100%;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .stats-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .stats-container {
        padding: 0 2rem;
    }
}

.stats-card {
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    background-color: #f8fafc;
    z-index: 3;
    border: 1px solid #e2e8f0;
}

.stats-card::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px;
    right: 20px;
    height: 8px;
    background: #f8fafc;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 2px 8px -2px #0000001a;
    z-index: -1;
    border: 1px solid #e2e8f0;
}

.stats-card::after {
    content: "";
    position: absolute;
    top: -16px;
    left: 40px;
    right: 40px;
    height: 8px;
    background: #f8fafc;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 1px 4px -1px #00000014;
    z-index: -2;
    border: 1px solid #e2e8f0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.75rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 35px;
    background-color: #e5e7eb;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-bottom {
        margin-top: 1.5rem;
    }

    .stats-section {
        padding: 0.75rem 0 1rem 0;
    }

    .stats-container {
        padding: 0 1rem;
    }

    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem 0.75rem;
        gap: 0.75rem 0;
    }

    .stat-item {
        padding: 0;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item:nth-child(2n) {
        border-left: 1px solid #e5e7eb;
        padding-left: 0.75rem;
    }

    .stat-item:nth-child(2n+1) {
        padding-right: 0.75rem;
    }

    .stat-number {
        font-size: 1.125rem;
    }

    .stat-label {
        font-size: 0.6875rem;
    }
}

.brands-section {
    position: relative;
    padding: 0rem 0 0 0;
    width: 100%;
    overflow: hidden;
}

.brands-container {
    width: 100%;
    margin: 0;
}

.brands-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: slide 60s linear infinite;
    will-change: transform;
    width: fit-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    cursor: pointer;
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.brand-item .brand-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6b7280;
    padding: 10px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.brand-item:hover .brand-text {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: #f0fdfc;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .brand-item .brand-text {
        font-size: 1rem;
        padding: 8px 16px;
    }
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding: 1rem 0 2rem 0;
        order: -1;
    }

    .stats-section {
        order: 1;
    }

    .brands-track {
        gap: 1.5rem;
    }

    .brand-item img {
        height: 28px;
        max-width: 110px;
    }
}

.top-banner-text-mobile {
    display: none;
}

@media (max-width: 768px) {
    .top-banner {
        height: auto;
        min-height: 35px;
        padding: 0.375rem 0;
    }

    .top-banner-container {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: space-between;
        align-items: center;
    }

    .top-banner-left {
        font-size: 0.7rem;
        text-align: left;
        flex: 1;
        min-width: 0;
    }

    .top-banner-star {
        display: none !important;
    }

    .top-banner-text-full {
        display: none;
    }

    .top-banner-text-mobile {
        display: inline;
    }

    .top-banner-right {
        flex-shrink: 0;
    }

    .top-banner-button {
        font-size: 0.7rem;
        padding: 0.25rem 0.625rem;
        white-space: nowrap;
    }

    .top-banner-button i {
        font-size: 0.7rem;
    }

    .hero-section {
        padding: 1.5rem 0;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hero-container::before {
        width: 250px;
        height: 250px;
        background-size: 20px 20px;
    }

    .hero-left {
        gap: 0.75rem;
        order: 1;
    }

    .hero-right {
        order: -1;
    }

    .hero-main-title {
        font-size: 1.75rem;
        line-height: 1.3;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.8125rem;
        margin: 0;
        text-align: center;
    }

    .hero-typing-container {
        font-size: 1rem;
        min-height: 1.5rem;
        justify-content: center;
    }

    .hero-testimonial {
        padding: 0.875rem 1rem;
        margin-top: 0.5rem;
        max-width: 100%;
    }

    .testimonial-quote-mark {
        font-size: 2.25rem;
        top: 0.375rem;
        right: 0.625rem;
    }

    .testimonial-text {
        font-size: 0.75rem;
        line-height: 1.5;
        margin: 0 0 0.5rem 0;
        text-align: left;
    }

    .author-name, .author-title {
        font-size: 0.6875rem;
    }

    .hero-social-proof {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 0.5rem;
        flex-wrap: wrap;
        width: 100%;
    }

    .social-proof-avatars {
        justify-content: center;
    }

    .avatar {
        width: 1.75rem;
        height: 1.75rem;
        margin-left: -0.35rem;
    }

    .rating-stars-score {
        justify-content: center;
    }

    .rating-stars {
        font-size: 0.6875rem;
    }

    .rating-score {
        font-size: 0.8125rem;
    }

    .rating-success {
        font-size: 0.75rem;
        text-align: center;
    }

    .social-proof-rating {
        align-items: center;
        gap: 0.125rem;
    }
}

.footer {
    background-color: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .footer-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding: 0 2rem;
    }
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-tagline .text-primary {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f3f4f6;
    color: #4b5563;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
    font-size: 0.95rem;
}

.footer-email i {
    color: var(--primary-color);
}

.footer-email a {
    color: #4b5563;
    transition: color 0.2s;
}

.footer-email a:hover {
    color: var(--primary-color);
}

.footer-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column-title {
    color: #111827;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column:has(.app-download-buttons) .footer-column-title {
    text-align: center;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #6b7280;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
}

.app-buttons-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.app-button-center {
    display: flex;
    justify-content: center;
}

.app-download-buttons img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    max-width: 200px;
}

.app-button-center img {
    max-width: 200px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #6b7280;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-main {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-left {
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    .footer-tagline {
        font-size: 0.875rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-email {
        justify-content: center;
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column-title {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    .footer-links {
        gap: 0.5rem;
    }

    .footer-links li {
        text-align: center;
    }

    .footer-links a {
        font-size: 0.8125rem;
    }

    .app-download-buttons {
        max-width: 100%;
        gap: 0.5rem;
        align-items: center;
    }

    .app-buttons-row {
        gap: 0.5rem;
        justify-items: center;
    }

    .app-download-buttons img {
        max-width: 150px;
    }

    .app-button-center img {
        max-width: 150px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding-top: 1rem;
    }

    .footer-copyright {
        font-size: 0.8125rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal a {
        font-size: 0.8125rem;
    }

    .social-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .footer-email {
        font-size: 0.875rem;
        gap: 0.5rem;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #0d9488, #0d9488);
    box-shadow: 0 6px 16px rgba(15, 118, 110, 0.4);
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.875rem;
    }
}

/* Solutions Section */
.solutions-section {
    border-top: 1px solid #e2e8f0;
    padding: 5rem 0;
    background-color: var(--background-color);
}

.solutions-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .solutions-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .solutions-container {
        padding: 0 2rem;
    }
}

.solutions-section .et-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.solutions-section .et-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.solutions-section .et-section-title h3 {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.solutions-tabs-box {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.solutions-tabs {
    display: flex;
    background-color: #fff;
    border: 1px solid #e0f2fe;
    border-radius: 0.5rem;
    padding: 0.625rem;
    position: relative;
    gap: 0;
}

.solution-tab {
    padding: 0.875rem 1.75rem;
    background-color: transparent;
    border: none;
    border-radius: var(--border-radius);
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.solution-tab:hover {
    color: var(--primary-color);
}

.solution-tab.active {
    color: #fff;
    background-color: var(--primary-color);
}

.solution-tab::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
    transition: all 0.3s ease;
    z-index: -1;
}

.solution-tab.active::after {
    width: 80%;
    background-color: #fff;
}

.solution-tab:hover::after {
    width: 60%;
}

.solutions-content {
    position: relative;
    min-height: 400px;
    width: 100%;
}

.solution-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.solution-tab-content.active {
    display: block;
}

.solution-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .solution-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 420px;
    width: 100%;
    min-width: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.solution-card-image {
    position: relative;
    overflow: hidden;
    background-color: #f3f4f6;
    height: 220px;
    flex-shrink: 0;
}

.solution-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-card-image img {
    transform: scale(1.05);
}

.solution-card-content {
    padding: 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    min-height: 0;
}

.solution-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 3.25rem;
}

.solution-card:hover .solution-card-title {
    color: var(--primary-color);
}

.solution-card-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 3rem 0;
    }

    .solutions-section .et-section-title {
        margin-bottom: 2rem;
    }

    .solutions-section .et-section-title h2 {
        font-size: 2rem;
    }

    .solutions-section .et-section-title h3 {
        font-size: 1rem;
    }

    .solutions-tabs-box {
        margin-bottom: 2rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 1rem;
        justify-content: flex-start;
    }

    .solutions-tabs-box::-webkit-scrollbar {
        display: none;
    }

    .solutions-tabs {
        min-width: fit-content;
        margin: 0;
    }

    .solution-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .solutions-content {
        min-height: auto;
    }

    .solution-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-card {
        height: 380px;
    }

    .solution-card-image {
        height: 200px;
    }

    .solution-card-content {
        padding: 1.25rem 1.5rem;
    }

    .solution-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        min-height: 3.25rem;
    }

    .solution-card-description {
        font-size: 0.85rem;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        line-height: 1.4;
    }
}

.et-tabs-section {
    padding: 5rem 0;
    background: #1C1C1C;
    position: relative;
    overflow: hidden;
}

.et-tabs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.2px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.et-tabs-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .et-tabs-section .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .et-tabs-section .container {
        padding: 0 2rem;
    }
}

.et-tabs-section .et-tabs-wrapper {
    position: relative;
    z-index: 1;
}

.et-tabs-section .et-tabs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.et-tabs-section .et-tabs-header .et-tabs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.et-tabs-section .et-tabs-header .et-tabs-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.et-tabs-section .et-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

.et-tabs-section .et-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.et-tabs-section .et-tabs-nav .et-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: .25rem;
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.et-tabs-section .et-tabs-nav .et-tab-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.et-tabs-section .et-tabs-nav .et-tab-btn i,
.et-tabs-section .et-tabs-nav .et-tab-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.et-tabs-section .et-tabs-nav .et-tab-btn:hover {
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.2);
}

.et-tabs-section .et-tabs-nav .et-tab-btn.active {
    background: var(--primary-color);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-color);
}

.et-tabs-section .et-tabs-nav .et-tab-btn.active::before {
    opacity: 0;
}

.et-tabs-section .et-tabs-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.et-tabs-section .et-tab-panel {
    width: 100%;
    display: none;
    justify-content: center;
}

.et-tabs-section .et-tab-panel.active {
    display: flex;
    justify-content: center;
}

.et-tabs-section .et-tab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 1 kart olduğunda ortala */
.et-tabs-section .et-tab-grid.grid-1 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

/* 2 kart olduğunda ortala */
.et-tabs-section .et-tab-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

/* 3 kart olduğunda normal grid */
.et-tabs-section .et-tab-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

/* 4. kartı normal grid akışına bırak */
.et-tabs-section .et-tab-grid .et-tab-card:nth-child(4) {
    grid-column: auto;
    justify-self: stretch;
}

/* Tablet için 2 sütun (768px - 991px arası) */
@media (max-width: 991.98px) and (min-width: 768px) {
    .et-tabs-section .et-tab-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .et-tabs-section .et-tab-grid .et-tab-card:nth-child(4),
    .et-tabs-section .et-tab-grid .et-tab-card:only-child,
    .et-tabs-section .et-tab-grid .et-tab-card:nth-child(2):last-child:not(:nth-child(4)) {
        grid-column: span 1;
        justify-self: stretch;
    }
}

.et-tabs-section .et-tab-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    user-select: text;
}

.et-tabs-section .et-tab-panel.active .et-tab-card {
    animation: fadeInUp 0.6s ease forwards;
}

.et-tabs-section .et-tab-panel.active .et-tab-card:nth-child(1) {
    animation-delay: 0.1s;
}

.et-tabs-section .et-tab-panel.active .et-tab-card:nth-child(2) {
    animation-delay: 0.2s;
}

.et-tabs-section .et-tab-panel.active .et-tab-card:nth-child(3) {
    animation-delay: 0.3s;
}

.et-tabs-section .et-tab-panel.active .et-tab-card:nth-child(4) {
    animation-delay: 0.4s;
}

.et-tabs-section .et-tab-panel.active .et-tab-card:nth-child(5) {
    animation-delay: 0.5s;
}

.et-tabs-section .et-tab-panel.active .et-tab-card:nth-child(6) {
    animation-delay: 0.6s;
}

.et-tabs-section .et-tab-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(37, 99, 235, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.et-tabs-section .et-tab-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.et-tabs-section .et-tab-card:hover::before {
    opacity: 1;
}

.et-tabs-section .et-tab-card:hover .et-tab-card-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.et-tabs-section .et-tab-card:hover .et-tab-card-logo {
    transform: scale(1.05);
}

.et-tabs-section .et-tab-card:hover h3 {
    color: #3b82f6; /* $et-font-color yerine #3b82f6 */
}

.et-tabs-section .et-tab-card .et-tab-card-icon {
    width: 80px;
    height: 80px;
    min-height: 80px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.et-tabs-section .et-tab-card .et-tab-card-icon i {
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.et-tabs-section .et-tab-card .et-tab-card-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    min-height: 100px;
    max-height: 120px;
}

.et-tabs-section .et-tab-card .et-tab-card-logo img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.et-tabs-section .et-tab-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    flex-shrink: 0;
    text-align: center;
    min-height: 1.5rem;
}

.et-tabs-section .et-tab-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
    text-align: center;
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.et-tabs-section .et-tab-card .et-project-website {
    display: block;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
    flex-shrink: 0;
    cursor: pointer;
    pointer-events: auto;
    text-align: center;
    min-height: 1.5rem;
}

.et-tabs-section .et-tab-card .et-project-website:hover {
    color: #2563eb;
    text-decoration: underline;
}

.et-tabs-section .et-tab-card .et-project-website::before {
    content: '🌐 ';
    margin-right: 0.25rem;
}

.et-tabs-section .et-tab-card .et-app-store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 1rem auto 0;
    flex-shrink: 0;
    cursor: pointer;
    pointer-events: auto;
    min-height: 2.5rem;
    width: 100%;
    max-width: 280px;
}

.et-tabs-section .et-tab-card .et-app-store-btn i {
    font-size: 1.25rem;
}

.et-tabs-section .et-tab-card .et-app-store-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.et-tabs-section .et-tab-card .et-app-store-btn:active {
    transform: translateY(0);
}

/* Web adresi olmayan kartlar için boş alan */
.et-tabs-section .et-tab-card .et-project-website-placeholder {
    display: block;
    height: 1.5rem;
    margin-top: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .et-tabs-section {
        padding: 3rem 0;
    }

    .et-tabs-section .et-tabs-header .et-tabs-title {
        font-size: 2rem;
    }

    .et-tabs-section .et-tabs-nav {
        gap: 0.25rem;
        margin-bottom: 2rem;
        justify-content: center;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .et-tabs-section .et-tabs-nav .et-tab-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.3rem;
        width: 100%;
        text-align: center;
    }

    .et-tabs-section .et-tabs-nav .et-tab-btn i {
        font-size: 1.1rem;
    }

    .et-tabs-section .et-tabs-nav .et-tab-btn span {
        display: block;
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .et-tabs-section .et-tab-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        max-width: 100%;
        width: 100%;
        padding: 0 1rem;
    }

    .et-tabs-section .et-tab-grid.grid-1,
    .et-tabs-section .et-tab-grid.grid-2,
    .et-tabs-section .et-tab-grid.grid-3 {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    .et-tabs-section .et-tab-grid .et-tab-card:nth-child(4),
    .et-tabs-section .et-tab-grid .et-tab-card:only-child,
    .et-tabs-section .et-tab-grid .et-tab-card:nth-child(2):last-child:not(:nth-child(4)) {
        grid-column: 1 !important;
        justify-self: stretch;
    }

    .et-tabs-section .et-tab-card {
        padding: 1.5rem;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .et-tabs-section .et-tab-card .et-app-store-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        max-width: 100%;
    }

    .et-tabs-section .et-tab-card .et-app-store-btn i {
        font-size: 1.1rem;
    }
}

.et-testimonials {
    padding: 80px 0;
    background: var(--background-color);
    position: relative;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.et-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e2e8f0" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.et-testimonials .et-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.et-testimonials .et-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.et-testimonials .et-section-title h3 {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .et-testimonials .et-section-title {
        margin-bottom: 2rem;
    }

    .et-testimonials .et-section-title h2 {
        font-size: 2rem;
    }

    .et-testimonials .et-section-title h3 {
        font-size: 1rem;
    }
}

.et-testimonials .testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
}

.et-testimonials .testimonial-card {
    opacity: 0;
    visibility: hidden;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.et-testimonials .testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.et-testimonials .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3ab54a, #22c55e, #16a34a);
}

.et-testimonials .testimonial-content {
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 40px;
}

@media (max-width: 768px) {
    .et-testimonials .testimonial-content {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
        text-align: left;
    }
}

.et-testimonials .testimonial-image {
    flex-shrink: 0;
    position: relative;
    width: 200px;
    height: 200px;
}

@media (max-width: 768px) {
    .et-testimonials .testimonial-image {
        width: 150px;
        height: 150px;
    }
}

.et-testimonials .testimonial-image .customer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.et-testimonials .testimonial-image .customer-photo:hover {
    transform: scale(1.05);
}

.et-testimonials .testimonial-image .quote-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3ab54a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(58, 181, 74, 0.3);
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .et-testimonials .testimonial-image .quote-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
        bottom: 5px;
        right: 5px;
    }
}

.et-testimonials .testimonial-text {
    flex: 1;
    position: relative;
}

.et-testimonials .testimonial-text .quote-mark {
    font-size: 120px;
    color: #e2e8f0;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: 1;
    font-family: 'Georgia', serif;
}

@media (max-width: 768px) {
    .et-testimonials .testimonial-text .quote-mark {
        font-size: 80px;
        top: -10px;
        left: 0;
    }
}

.et-testimonials .testimonial-text .testimonial-message {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 2;
    font-style: italic;
}

@media (max-width: 768px) {
    .et-testimonials .testimonial-text .testimonial-message {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

.et-testimonials .testimonial-text .customer-info {
    position: relative;
    z-index: 2;
}

.et-testimonials .testimonial-text .customer-info .customer-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2A3042;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .et-testimonials .testimonial-text .customer-info .customer-name {
        font-size: 1.2rem;
    }
}

.et-testimonials .testimonial-text .customer-info .customer-title {
    font-size: 1rem;
    color: #3ab54a;
    font-weight: 600;
    margin-bottom: 3px;
}

.et-testimonials .testimonial-text .customer-info .customer-company {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.et-testimonials .testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.et-testimonials .testimonial-navigation .testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.et-testimonials .testimonial-navigation .testimonial-nav-btn:hover {
    border-color: #3ab54a;
    color: #3ab54a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 181, 74, 0.2);
}

.et-testimonials .testimonial-navigation .testimonial-nav-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .et-testimonials .testimonial-navigation .testimonial-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
}

.et-testimonials .testimonial-navigation .testimonial-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.et-testimonials .testimonial-navigation .testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.et-testimonials .testimonial-navigation .testimonial-dots .dot.active {
    background: #3ab54a;
    transform: scale(1.2);
}

.et-testimonials .testimonial-navigation .testimonial-dots .dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #3ab54a;
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 1.5s infinite;
}

.et-testimonials .testimonial-navigation .testimonial-dots .dot:hover:not(.active) {
    background: #cbd5e1;
    transform: scale(1.1);
}

/* Gerekli CSS Animasyonları */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(58, 181, 74, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(58, 181, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(58, 181, 74, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Müşteri Yorumları css */
.et-testimonials {
    background: var(--background-color);
    padding: 4rem 0 3rem 0;
}

.et-testimonials .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .et-testimonials .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .et-testimonials .container {
        padding: 0 2rem;
    }
}

.et-testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.et-testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.et-testimonials-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .et-testimonials-title {
        font-size: 2rem;
    }
}

.et-testimonials .et-testimonials-grid {
    align-items: stretch;
}

.et-testimonials .et-testimonial-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 1rem;
    height: 100%;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
    transition: box-shadow .2s ease, transform .2s ease;
}

.et-testimonials .et-testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

/* Masonry düzeni */
.et-testimonials .et-masonry {
    column-count: 1;
    column-gap: 0.875rem;
}

@media (min-width: 768px) {
    .et-testimonials .et-masonry {
        column-count: 2;
    }
}

@media (min-width: 1200px) {
    .et-testimonials .et-masonry {
        column-count: 3;
    }
}

.et-testimonials .et-masonry-item {
    break-inside: avoid;
    margin-bottom: 0.875rem;
}

.et-testimonials .et-testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.et-testimonials .et-testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.et-testimonials .et-testimonial-name {
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
    font-size: 0.9375rem;
}

.et-testimonials .et-testimonial-role {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.3;
}

.et-testimonials .et-testimonial-text {
    color: #374151;
    margin: 0.5rem 0 0 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* asdsafsadassadsad */
.et-success-stories {
    padding: 4rem 0;
    background: var(--background-color);
    border-bottom: 1px solid #e9edf1;
}

.et-success-stories .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

@media (min-width: 640px) {
    .et-success-stories .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .et-success-stories .container {
        padding: 0 2rem;
    }
}

.et-success-stories .et-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.et-success-stories .et-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.et-success-stories .et-section-title h3 {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.et-success-stories .et-success-story-image {
    height: 100%;
    flex-shrink: 0;
}

.et-success-stories .et-success-story-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-right: 1px solid #eef2f7;
    border-radius: 0;
    box-shadow: none;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.et-success-stories .et-success-story-image.et-success-story-image-landscape img {
    object-fit: contain;
    object-position: center;
    background: #f8fafc;
    height: auto;
    width: 100%;
}

.et-success-stories .et-success-story-content {
    padding: 2.5rem 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

@media (max-width: 1199px) {
    .et-success-stories .et-success-story-content {
        padding: 2.25rem 2.5rem;
    }
}

@media (max-width: 991px) {
    .et-success-stories .et-success-story-content {
        padding: 2rem 1.5rem;
    }
}

.et-success-stories .et-success-footer {
    margin-top: auto;
    flex-shrink: 0;
}

.et-success-stories .et-success-card {
    background: #ffffff;
    border: 1px solid #e9edf1;
    border-radius: 1rem;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(30,41,59,.04), 0 8px 24px rgba(30,41,59,.06);
    width: 100%;
    max-width: 1180px; /* biraz daha geniş kart */
    margin: 0 auto; /* ortala */
    height: 680px; /* daha uzun kart yüksekliği */
    display: flex;
    flex-direction: column;
    pointer-events: auto;
}

.et-success-stories .et-success-card * {
    pointer-events: auto;
}

.et-success-stories .et-success-card .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    height: 100%;
}

.et-success-stories .et-success-card .row.g-0 {
    height: 100%;
    margin: 0;
}

.et-success-stories .et-success-card .row.g-0 > [class^="col-"],
.et-success-stories .et-success-card .row.g-0 > [class*=" col-"] {
    padding: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.et-success-stories .et-success-card .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 991.98px) {
    .et-success-stories .et-success-card .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .et-success-stories .et-success-card {
        border-radius: 0.75rem;
        max-width: 100%;
        height: auto;
        min-height: 500px;
    }
}

.et-success-stories .et-success-quote {
    border: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
}

.et-success-stories .et-success-quote p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #334155;
    font-style: normal;
    margin-bottom: 0;
    position: relative;
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.et-success-stories .et-success-quote p::before {
    z-index: 0;
    content: '"';
    font-size: 3.5rem;
    color: #eaeef3;
    position: absolute;
    top: -0.5rem;
    left: 0;
    font-family: Georgia, serif;
    line-height: 1;
}

.et-success-stories .et-success-attribution {
    display: flex;
    flex-direction: column; /* logo üstte, yazı altta */
    align-items: flex-start;
    gap: .5rem;
    flex-shrink: 0;
}

.et-success-stories .et-success-attribution .et-company-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: none;
}

.et-success-stories .et-success-attribution .et-company-name {
    font-size: 1rem;
    color: #111827;
    font-weight: 600;
}

/* Basit slider stilleri */
.et-success-slider {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

.et-success-track {
    display: flex;
    width: 100%;
    transition: transform .35s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.et-success-track:active {
    cursor: grabbing;
}

.et-success-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: stretch;
}

.et-success-slide .et-success-card {
    width: 100%;
}

/* Navigation buttons removed - using swipe instead */
/* Dots */
.et-success-dots {
    position: absolute;
    right: 16px;
    bottom: 14px;
    display: flex;
    gap: 10px;
}

.et-success-dot {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.et-success-dot:hover:not(.is-active) {
    border-color: #cbd5e1;
    transform: scale(1.1);
}

.et-success-dot::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    display: block;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease;
}

.et-success-dot.is-active::after {
    background: #111827;
    width: 8px;
    height: 8px;
}

@media (max-width: 991.98px) {
    .et-success-stories .et-success-card .row.g-0 > [class^="col-"],
    .et-success-stories .et-success-card .row.g-0 > [class*=" col-"] {
        height: auto;
    }

    .et-success-stories .et-success-story-image {
        height: auto;
        min-height: 200px;
        flex-shrink: 0;
    }

    .et-success-stories .et-success-story-image.et-success-story-image-landscape img {
        object-fit: contain;
        height: auto;
        width: 100%;
    }

    .et-success-stories .et-success-story-image img {
        border-right: 0;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 575.98px) {
    .et-success-stories {
        padding: 3rem 0;
    }

    .et-success-stories .et-section-title {
        margin-bottom: 2rem;
    }

    .et-success-stories .et-section-title h2 {
        font-size: 2rem;
    }

    .et-success-stories .et-section-title h3 {
        font-size: 1rem;
    }

    .et-success-stories .et-success-quote p {
        font-size: 0.875rem;
        padding-left: 1rem;
        padding-top: 0.25rem;
    }

    .et-success-stories .et-success-quote p::before {
        font-size: 2.5rem;
        top: -0.25rem;
    }

    .et-success-stories .et-success-card {
        height: auto;
        min-height: 400px;
    }

    .et-success-stories .et-success-story-content {
        padding: 1.5rem 1.25rem;
    }

    .et-success-dots {
        right: 8px;
        bottom: 8px;
        gap: 6px;
    }

    .et-success-dot {
        width: 14px;
        height: 14px;
    }

    .et-success-dot::after {
        width: 5px;
        height: 5px;
    }

    .et-success-dot.is-active::after {
        width: 6px;
        height: 6px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--background-color);
    position: relative;
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .faq-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .faq-container {
        padding: 0 2rem;
    }
}

.faq-section .et-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-section .et-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.faq-section .et-section-title h3 {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section .et-section-title {
        margin-bottom: 2rem;
    }

    .faq-section .et-section-title h2 {
        font-size: 2rem;
    }

    .faq-section .et-section-title h3 {
        font-size: 1rem;
    }
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    transition: color 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    color: #0f766e;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    speak: never !important;
    line-height: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    font-size: 0.875rem;
    color: #6b7280;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-question:hover .faq-icon {
    color: #0f766e;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: #0f766e;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 0 1.25rem 0;
}

.faq-answer p {
    color: rgb(28, 23, 23);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-content {
        padding: 1.5rem;
        border-radius: 0.5rem;
    }

    .faq-question {
        padding: 1rem 0;
        font-size: 0.9375rem;
    }

    .faq-answer p {
        font-size: 0.875rem;
    }

    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 0 1rem 0;
    }
}
