/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #f8fafc;
    color: #1e293b;
    border-color: #e2e8f0;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

/* Modern Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: none;
    background: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 1201;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
    margin: 5px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1200;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 1202;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.mobile-menu-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.mobile-menu-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    padding: 80px 24px 32px 24px;
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-menu-list li {
    border-bottom: 1px solid #f1f5f9;
}

.mobile-menu-list a {
    display: block;
    padding: 20px 24px;
    font-size: 1.1rem;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    background: #f8fafc;
    color: #2563eb;
    padding-left: 32px;
}

.mobile-menu-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #2563eb;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.mobile-menu-list a:hover::before,
.mobile-menu-list a.active::before {
    transform: scaleY(1);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 24px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.mobile-menu-footer .btn {
    width: 100%;
    margin-bottom: 12px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu,
    .nav-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
    
    .mobile-menu-title {
        font-size: 1.5rem;
        padding: 60px 20px 24px 20px;
    }
    
    .mobile-menu-list a {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .mobile-menu-list a:hover,
    .mobile-menu-list a.active {
        padding-left: 28px;
    }
    
    .mobile-menu-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .mobile-menu-footer {
        padding: 20px;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Why Turkey Section */
.why-turkey {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #64748b;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-style: italic;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: #1e293b;
    display: block;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: white;
    color: #2563eb;
}

.cta .btn-primary:hover {
    background-color: #f8fafc;
}

.cta .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background-color: white;
    color: #2563eb;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #cbd5e1;
}

/* Service Page Specific Styles */
.hero-service {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.content-section {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-text li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Techniques Section */
.techniques {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.technique-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.technique-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.technique-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.technique-card ul {
    list-style: none;
}

.technique-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.technique-card li:last-child {
    border-bottom: none;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-table th {
    background-color: #2563eb;
    color: white;
    font-weight: 600;
}

.pricing-table tr:hover {
    background-color: #f8fafc;
}

.pricing-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f0f9ff;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #64748b;
    margin-bottom: 0;
}

/* Doctor Profile */
.doctor-profile {
    padding: 4rem 0;
}

.doctor-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.doctor-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.doctor-info h3 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.doctor-title {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.doctor-credentials {
    list-style: none;
    margin-bottom: 2rem;
}

.doctor-credentials li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.doctor-credentials li:last-child {
    border-bottom: none;
}

.doctor-credentials li::before {
    content: "✓";
    color: #2563eb;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .doctor-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .benefits-grid,
    .gallery-grid,
    .testimonials-grid,
    .techniques-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .services,
    .why-turkey,
    .gallery,
    .testimonials,
    .cta,
    .content-section,
    .techniques,
    .pricing,
    .faq,
    .doctor-profile {
        padding: 2rem 0;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .nav-cta,
    .cta,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .service-card,
    .testimonial-card,
    .technique-card {
        page-break-inside: avoid;
    }
}

/* Modern Section Headings */
.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: titleUnderline 2s ease-in-out infinite;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Card Headings */
.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.card-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    border-radius: 2px;
}

/* Why Turkey Section Modern Heading */
.why-turkey-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    animation: titleFloat 4s ease-in-out infinite;
}

.why-turkey-header p {
    text-align: center;
    font-size: 1.3rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Best Doctors Section Heading */
.best-doctors h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.best-doctors h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #11998e, #38ef7d);
    border-radius: 3px;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Surgical Process Section Heading */
.surgical-process h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.surgical-process h2::before {
    content: '⚡';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.surgical-process h2::after {
    content: '⚡';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite reverse;
}

/* Testimonials Section Heading */
.testimonials h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.testimonials h2::after {
    content: '💬';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

/* Animations */
@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
    }
}

@keyframes titleUnderline {
    0%, 100% {
        width: 80px;
        opacity: 1;
    }
    50% {
        width: 120px;
        opacity: 0.8;
    }
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(17, 153, 142, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(17, 153, 142, 0.6);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(-60%);
    }
}

/* Mobile Responsive for Modern Headings */
@media (max-width: 768px) {
    .section-title,
    .why-turkey-header h2,
    .best-doctors h2,
    .surgical-process h2,
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .why-turkey-header p,
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .surgical-process h2::before,
    .surgical-process h2::after {
        display: none;
    }
    
    .testimonials h2::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-title,
    .why-turkey-header h2,
    .best-doctors h2,
    .surgical-process h2,
    .testimonials h2 {
        font-size: 1.8rem;
    }
    
    .why-turkey-header p,
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Modern Responsive Menü (s- ile başlayan class'lar) */
.s-main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.s-main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.s-main-logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  letter-spacing: 1px;
}
.s-main-nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.s-main-nav-list a {
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.s-main-nav-list a:hover {
  color: #2563eb;
}
.s-main-nav-cta {
  background: #2563eb;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 2rem;
  transition: background 0.2s;
}
.s-main-nav-cta:hover {
  background: #1d4ed8;
}
.s-main-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1.5rem;
}
.s-main-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #2563eb;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.s-main-mobile-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 80vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.08);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
}
.s-main-mobile-menu.active {
  right: 0;
}
.s-main-mobile-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #64748b;
  align-self: flex-end;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.s-main-mobile-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  width: 100%;
}
.s-main-mobile-list li {
  border-bottom: 1px solid #f1f5f9;
}
.s-main-mobile-list a {
  display: block;
  padding: 1rem 0;
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.s-main-mobile-list a:hover {
  color: #2563eb;
}
.s-main-mobile-cta {
  background: #2563eb;
  color: #fff;
  padding: 12px 0;
  border-radius: 8px;
  text-align: center;
  width: 100%;
  text-decoration: none;
  font-weight: 600;
  display: block;
}
.s-main-mobile-cta:hover {
  background: #1d4ed8;
}
@media (max-width: 1024px) {
  .s-main-nav-list {
    display: none;
  }
  .s-main-nav-cta {
    display: none;
  }
  .s-main-hamburger {
    display: flex;
  }
}

/*  Mobile Menu */

.s-main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.s-main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.s-main-logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  letter-spacing: 1px;
}
.s-main-nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.s-main-nav-list a {
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.s-main-nav-list a:hover {
  color: #2563eb;
}
.s-main-nav-cta {
  background: #2563eb;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 2rem;
  transition: background 0.2s;
}
.s-main-nav-cta:hover {
  background: #1d4ed8;
}
.s-main-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1.5rem;
}
.s-main-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #2563eb;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
/* Mobil Menü */
.s-main-mobile-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 80vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.08);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
}
.s-main-mobile-menu.active {
  right: 0;
}
.s-main-mobile-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #64748b;
  align-self: flex-end;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.s-main-mobile-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  width: 100%;
}
.s-main-mobile-list li {
  border-bottom: 1px solid #f1f5f9;
}
.s-main-mobile-list a {
  display: block;
  padding: 1rem 0;
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.s-main-mobile-list a:hover {
  color: #2563eb;
}
.s-main-mobile-cta {
  background: #2563eb;
  color: #fff;
  padding: 12px 0;
  border-radius: 8px;
  text-align: center;
  width: 100%;
  text-decoration: none;
  font-weight: 600;
  display: block;
}
.s-main-mobile-cta:hover {
  background: #1d4ed8;
}
@media (max-width: 1024px) {
  .s-main-nav-list {
    display: none;
  }
  .s-main-nav-cta {
    display: none;
  }
  .s-main-hamburger {
    display: flex;
  }
}
