/* Reset ve Temel Stiller */
:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --text-color: #2C3E50;
    --light-gray: #ECF0F1;
    --white: #FFFFFF;
    --container-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    min-height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header ve Navigasyon */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav__logo {
    height: 50px;
}

.nav__logo-img {
    height: 100%;
    width: auto;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav__link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover,
.nav__link--active {
    color: var(--secondary-color);
}

.nav__toggle {
    display: none;
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--spacing-lg)) 0 var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero__text {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button--primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.button--primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    position: relative;
}

.feature-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card__icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card__icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-card__icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1);
}

.feature-card__title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.feature-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transition: width 0.3s ease;
}

.feature-card:hover .feature-card__title::after {
    width: 100px;
}

.feature-card__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    opacity: 0.9;
}

.feature-card__number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.05;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card__number {
    opacity: 0.1;
    transform: scale(1.2);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-lg) 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.footer__info {
    max-width: 300px;
}

.footer__logo {
    height: 40px;
    margin-bottom: var(--spacing-sm);
}

.footer__title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.footer__menu {
    list-style: none;
}

.footer__menu a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer__menu a:hover {
    opacity: 1;
}

.footer__bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(to bottom, var(--light-gray) 0%, #ffffff 100%);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.testimonial-card__rating {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--spacing-sm);
}

/* FAQ Section */
.faq {
    padding: var(--spacing-lg) 0;
    background-color: var(--white);
}

.faq__grid {
    display: grid;
    gap: var(--spacing-md);
    max-width: 800px;
    margin: var(--spacing-lg) auto;
}

.faq-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-card__question {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-right: 30px;
}

.faq-card__question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-card.active .faq-card__question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-card__answer {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
}

.faq-card.active .faq-card__answer {
    max-height: 500px;
    padding-top: var(--spacing-sm);
}

.faq__more {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Button Styles */
.button--secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.button--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.button--outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.button--outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .nav__menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: var(--spacing-md);
        flex-direction: column;
        align-items: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .nav__menu.active {
        display: flex;
    }

    .nav__toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .nav__toggle-line {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-color);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav__toggle-line::before,
    .nav__toggle-line::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--text-color);
        transition: transform 0.3s ease;
    }

    .nav__toggle-line::before {
        top: -8px;
    }

    .nav__toggle-line::after {
        bottom: -8px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-sm);
    }

    .testimonial-card {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .testimonial-card__text {
        font-size: 1rem;
    }

    .faq-card__question {
        font-size: 1.1rem;
    }

    .faq-card__answer {
        font-size: 1rem;
    }

    .features__grid {
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }

    .feature-card {
        padding: var(--spacing-md);
    }

    .feature-card__icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .feature-card__icon {
        width: 40px;
        height: 40px;
    }

    .feature-card__title {
        font-size: 1.3rem;
    }

    .feature-card__text {
        font-size: 1rem;
    }
}

/* Performans Optimizasyonları */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Process Section */
.process {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.process::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/pattern.svg') repeat;
    opacity: 0.03;
    z-index: 1;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    position: relative;
}

.process__steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color) 50%, var(--light-gray) 50%);
    background-size: 20px 2px;
    z-index: 1;
}

.step-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-card__number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: -40px auto var(--spacing-md);
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

.step-card:hover .step-card__number {
    transform: scale(1.1) rotate(360deg);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card__title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    position: relative;
}

.step-card__title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    margin: var(--spacing-sm) auto 0;
    transition: width 0.3s ease;
}

.step-card:hover .step-card__title::after {
    width: 100px;
}

.step-card__text {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.step-card__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.step-card:hover .step-card__icon {
    transform: scale(1.2);
    opacity: 0.2;
}

@media (max-width: 768px) {
    .process__steps {
        gap: var(--spacing-md);
    }

    .process__steps::before {
        display: none;
    }

    .step-card {
        padding: var(--spacing-md);
    }

    .step-card__number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: -30px auto var(--spacing-md);
    }

    .step-card__title {
        font-size: 1.3rem;
    }

    .step-card__text {
        font-size: 1rem;
    }
}

.process__note {
    text-align: center;
    margin-top: var(--spacing-lg);
    color: var(--text-color);
    opacity: 0.8;
    font-style: italic;
    font-size: 0.9rem;
}

.process__note p {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/pattern-light.svg') repeat;
    opacity: 0.05;
    animation: moveBg 30s linear infinite;
}

@keyframes moveBg {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta__title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.cta__text {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.cta__buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta__button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.cta__button {
    min-width: 200px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__button--primary {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.cta__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #c0392b;
    border-color: #c0392b;
}

.cta__button--primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.cta__button--secondary {
    background: transparent;
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.cta__button--secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta__button--secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.cta__button-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.cta__info {
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cta__title {
        font-size: 2rem;
    }

    .cta__text {
        font-size: 1.1rem;
    }

    .cta__buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .cta__button {
        width: 100%;
        min-width: auto;
    }
}

/* Floating Social Buttons */
.floating-social {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-social__button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 24px;
}

.floating-social__button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-social__button--whatsapp {
    background-color: #25D366;
}

.floating-social__button--instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.floating-social__button--facebook {
    background-color: #1877F2;
}

.floating-social__button--twitter {
    background-color: #1DA1F2;
}

.floating-social__button i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .floating-social {
        right: 10px;
        bottom: 10px;
    }

    .floating-social__button {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Contact Form Section */
.contact {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    position: relative;
}

.contact__info {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact__info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact__info-icon {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    padding: 10px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact__info-item:hover .contact__info-icon {
    transform: scale(1.1);
    background: var(--secondary-color);
    color: var(--white);
}

.contact__info-text {
    flex: 1;
}

.contact__info-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact__info-text p,
.contact__info-text a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
}

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

.contact__form {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form__group {
    margin-bottom: var(--spacing-md);
}

.form__group--full {
    grid-column: 1 / -1;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.02);
}

.form__input:hover,
.form__textarea:hover {
    border-color: rgba(52, 152, 219, 0.3);
    background-color: var(--white);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 150px;
}

.form__button {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.form__button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.form__button:hover::before {
    transform: translateX(100%);
}

.form__button:active {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .contact__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .contact__info {
        order: 2;
    }

    .contact__form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .form__grid {
        grid-template-columns: 1fr;
    }

    .contact__info-item {
        gap: var(--spacing-sm);
    }

    .contact__info-icon {
        width: 32px;
        height: 32px;
        padding: 8px;
    }

    .contact__form,
    .contact__info {
        padding: var(--spacing-md);
    }
}

/* MDK Method Section */
.mdk-method {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.mdk-method__content {
    max-width: 1000px;
    margin: 0 auto;
}

.mdk-method__intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.mdk-method__subtitle {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.mdk-method__subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.advantage-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.advantage-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.advantage-card__icon i {
    font-size: 24px;
    color: var(--white);
}

.advantage-card__title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.advantage-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.feature-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    margin: var(--spacing-lg) 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row:hover {
    background-color: rgba(52, 152, 219, 0.05);
}

.feature-cell {
    padding: var(--spacing-md);
}

.feature-cell:first-child {
    font-weight: 600;
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.02);
}

.mdk-method__doctor {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.mdk-method__doctor p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

.mdk-method__cta-text {
    font-weight: 600;
    color: var(--secondary-color) !important;
}

@media (max-width: 768px) {
    .mdk-method__intro {
        font-size: 1.1rem;
        text-align: left;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

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

    .feature-cell:first-child {
        padding-bottom: 0;
    }

    .mdk-method__doctor {
        padding: var(--spacing-md);
        text-align: left;
    }

    .mdk-method__doctor p {
        font-size: 1rem;
    }

    .mdk-method__subtitle {
        font-size: 1.5rem;
    }
}

/* Hemoroid Hakkında Bölümü */
.about-hemorrhoids {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.about-hemorrhoids__content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hemorrhoids__description {
    margin-bottom: 60px;
    text-align: center;
}

.about-hemorrhoids__description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
    margin: 0 auto 30px;
}

.symptoms-list {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.symptoms-list h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.symptoms-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.symptoms-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #555;
}

.symptoms-list li i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.warning-text {
    margin-top: 20px;
    padding: 15px;
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    border-radius: 4px;
    color: #795548;
}

/* Hemoroid Türleri */
.hemorrhoid-types {
    margin-bottom: 60px;
}

.hemorrhoid-types h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    color: #333;
}

.type-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
}

.type-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.type-card__header i {
    font-size: 1.5rem;
    color: #2196F3;
}

.type-card__header h4 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.type-card__list {
    list-style: none;
    padding: 0;
}

.type-card__list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.type-card__list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2196F3;
}

/* Nedenler */
.causes {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.causes h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    color: #333;
}

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

.cause-card {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.cause-card:hover {
    transform: translateY(-5px);
}

.cause-card i {
    font-size: 2rem;
    color: #E91E63;
    margin-bottom: 15px;
}

.cause-card h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.cause-card p {
    color: #666;
    line-height: 1.5;
}

.causes-note {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-top: 30px;
    padding: 20px;
    background: #e3f2fd;
    border-radius: 10px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .about-hemorrhoids {
        padding: 40px 0;
    }

    .symptoms-list ul {
        grid-template-columns: 1fr;
    }

    .type-cards {
        grid-template-columns: 1fr;
    }

    .causes {
        padding: 20px;
    }

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

    .cause-card {
        padding: 20px;
    }
} 

.map {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.map__content {
    text-align: center;
}

.map__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
}

.map__text {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #555;
}

.map__wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}
