/* ===== GENEL STİLLER ===== */
:root {
    --primary-color: #9DDFFF;
    --secondary-color: #2D2C2C;
    --text-color: #333;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-radius: 10px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

a {
    text-decoration: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* ===== NAVBAR STİLLERİ ===== */
.navbar {
    background: var(--white);
    box-shadow: var(--box-shadow);
    padding: 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.logo-img {
    height: 70px;
    width: auto;
}

.menu-item {
    color: var(--text-color) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: var(--transition);
    position: relative;
}

.menu-item:hover {
    color: var(--primary-color) !important;
}

.menu-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-color);
    transition: var(--transition);
}

.menu-item:hover::after {
    width: 100%;
}

.mobile-menu {
    padding: 0px 20px 10px 20px;
}

.mobile-menu-item {
    display: block;
    padding: 10px 0;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

/* ===== SLIDER BÖLÜMÜ ===== */
.slider-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7BC8FF 100%);
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.absolute-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
}

.bottom-absolute-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 175px;
    background: url('../img/090fa6801545e22cc24b13f8b25976a6302c14be.png') center/cover no-repeat;
}

.slider-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.app-download-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-color);
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
}

.download-icon {
    width: 50px;
    height: 50px;
}

.download-text p {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    color: #535353;
}

.slider-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.slider-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== BÖLÜM BAŞLIKLARI ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title:not(.no-after)::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* ===== UYGULAMA ÖZELLİKLERİ BÖLÜMÜ ===== */
.about-app-section {
    padding: 100px 0;
    background: var(--white);
}

.app-image {
    text-align: center;
    position: relative;
}

.app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-list {
    padding-left: 2rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(157, 223, 255, 0.8);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

/* ===== HAKKIMIZDA BÖLÜMÜ ===== */
.about-us-section {
    padding: 100px 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.25rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quote-icon-left,
.quote-icon-right {
    position: absolute;
    z-index: 1;
}

.quote-icon-left {
    top: 0px;
    left: 50px;
    width: 80px;
    height: 80px;
}

.quote-icon-right {
    bottom: -40px;
    right: 50px;
    width: 75px;
    height: 75px;
}

.medicine-vector {
    position: absolute;
    top: -45px;
    right: 50px;
    width: 115px;
    height: 115px;
    z-index: 1;
}

.quote-icon-left img,
.quote-icon-right img,
.medicine-vector img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== SSS BÖLÜMÜ ===== */
.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: var(--primary-color);
    border: none;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #8BC8FF;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-top: -5px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* ===== BLOG BÖLÜMÜ ===== */
.blog-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-image {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.blog-title-index {
    padding-left: 2rem;
}

.blog-list {
    margin-top: 2rem;
}

.blog-link {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-color);
}

.blog-link h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.blog-line {
    height: 1px;
    background: #ddd;
    width: 100%;
}

/* ===== İLETİŞİM BÖLÜMÜ ===== */
.contact-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contact-form-wrapper {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(157, 223, 255, 0.25);
}

.contact-form .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-form .btn-primary:hover {
    background: #8BC8FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* ===== İNDİRME BÖLÜMÜ ===== */
.download-app-section {
    padding: 60px 0;
    background: var(--primary-color);
    text-align: center;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer p {
    color: #ccc;
    line-height: 1.6;
}

.newsletter-form .form-control {
    background: #d9d9d9;
    border: none;
    border-radius: 20px;
    padding: 12px 20px;
}

.newsletter-form .btn-secondary {
    background: #d9d9d9;
    color: var(--text-color);
    border: none;
    border-radius: 20px;
    padding: 12px 20px;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--text-color);
    font-size: 14px;
}

.contact-label {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #ccc;
    margin: 0;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-list li {
    margin-bottom: 0.75rem;
}

.menu-list a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.menu-list a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: #8BC8FF;
    transform: translateY(-3px);
    color: var(--text-color);
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 768px) {
    .slider-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-button {
        width: 100%;
        max-width: 300px;
    }

    .features-list {
        padding-left: 0;
        margin-top: 2rem;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        padding: 0 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .download-title {
        font-size: 2rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .quote-icon-left,
    .quote-icon-right,
    .medicine-vector {
        display: none;
    }
}

@media (max-width: 576px) {
    .slider-content {
        padding: 80px 0;
    }

    .slider-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .download-title {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
}

/* ===== ANİMASYONLAR ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLL SMOOTH ===== */
html {
    scroll-behavior: smooth;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8BC8FF;
}

.btn-primary {
    background-color: #9DDFFF;
    border: none;
}

.btn-primary:hover {
    background-color: #9DDFFF;
    transform: scale(1.05);
}

.card-body {
    box-shadow: 0 8px 25px rgba(157, 223, 255, 0.3);
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
}

.blog-card:hover .card-body {
    transform: translateY(-1px);
    box-shadow: 0 12px 35px rgba(157, 223, 255, 0.4);
}

.blog-section {
    position: relative;
    margin-top: 23px;
}

.blog-banner {
    position: relative;
    height: 300px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(157, 223, 255, 0.85) 0%,
            rgba(157, 223, 255, 0.75) 50%,
            rgba(157, 223, 255, 0.85) 100%);
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

.blog-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.blog-page-title {
    font-weight: 600;
    font-size: 2.8rem;
    color: #333;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.blog-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.blog-card:hover {
    transform: translateY(-1px);
}

.blog-card .card-img-top {
    transition: transform 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.blog-card:hover .card-img-top {
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(135deg, #9DDFFF 0%, #7BC7FF 100%);
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7BC7FF 0%, #5AB3FF 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 199, 255, 0.4);
}

@media (max-width: 768px) {
    .blog-page-title {
        font-size: 2.2rem;
    }

    .blog-banner {
        height: 220px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .blog-banner::after {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}

@media (max-width: 576px) {
    .blog-page-title {
        font-size: 1.9rem;
        padding: 0 20px;
    }

    .blog-banner {
        height: 200px;
        margin-bottom: 30px;
    }
}

.share-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.share-buttons h5 {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    transition: transform 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    transform: scale(1.1);
}

.facebook {
    background: #3b5998;
}

.twitter {
    background: #1da1f2;
}

.linkedin {
    background: #0077b5;
}

.whatsapp {
    background: #25d366;
}

.instagram {
    background: #e1306c;
}
