.blog-hero {
    background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 50%, #e0e7ff 100%);
    border: 1px solid rgba(154,30,162,0.12);
    border-radius: 28px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 1.25rem;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.blog-hero img {
    width: 100%; height: 260px; object-fit: cover; border-radius: 18px;
}

.blog-hero h2 { margin: 0 0 .5rem 0; }
.blog-hero p { margin: 0; color: #5b4b5e; }

@media (max-width: 768px) {
    .blog-hero { grid-template-columns: 1fr; }
    .blog-hero img { height: 200px; }
}
/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 30%, #fff 100%);
    overflow-x: hidden;
    cursor: auto;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.hero, .navbar {
    cursor: none;
}

/* Custom Medical Cursors */
.custom-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

.custom-cursor::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #9a1ea2;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.custom-cursor::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid #9a1ea2;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.custom-cursor .trail {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(154, 30, 162, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
}

.custom-cursor.hover::before {
    transform: translate(-50%, -50%) scale(1.5);
    background: #ec4899;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.custom-cursor.hover::after {
    transform: translate(-50%, -50%) scale(1.2);
    border-color: #ec4899;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

@keyframes trailFade {
    from {
        opacity: 0.5;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.2);
    }
}

.trail {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(154, 30, 162, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9998;
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(154, 30, 162, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: cursorPulse 2s infinite;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    mix-blend-mode: difference;
}

.custom-cursor.hover::after { content: ''; }

@keyframes cursorPulse {
    0% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% { 
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes heartbeat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

/* Cursor for different elements */
.navbar .custom-cursor::after {
    content: '🩺';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

.service-card .custom-cursor::after {
    content: '⚕️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

.btn-primary .custom-cursor::after,
.cta-button .custom-cursor::after {
    content: '📞';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Floating Elements Background */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    display: none;
}

/* Medical Icons Floating */
.floating-medical {
    position: absolute;
    font-size: 2rem;
    color: rgba(236, 72, 153, 0.1);
    animation: floatMedical 15s infinite ease-in-out;
    pointer-events: none;
}

.floating-medical:nth-child(1) {
    top: 20%;
    left: 80%;
    animation-delay: 0s;
}

.floating-medical:nth-child(2) {
    top: 70%;
    left: 10%;
    animation-delay: 3s;
}

.floating-medical:nth-child(3) {
    top: 40%;
    right: 20%;
    animation-delay: 6s;
}

.floating-medical:nth-child(4) {
    bottom: 30%;
    left: 70%;
    animation-delay: 9s;
}

.floating-medical:nth-child(5) {
    top: 60%;
    left: 50%;
    animation-delay: 12s;
}

@keyframes floatMedical {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% { 
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-60px) rotate(180deg);
        opacity: 0.2;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.3;
    }
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(190, 24, 93, 0.1) 100%);
    animation: float 20s infinite ease-in-out;
}

.floating-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.floating-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.floating-diamond {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(190, 24, 93, 0.08) 100%);
    transform: rotate(45deg);
    animation: float 25s infinite ease-in-out;
}

.floating-diamond:nth-child(4) {
    top: 30%;
    right: 30%;
    animation-delay: 7s;
}

.floating-diamond:nth-child(5) {
    bottom: 40%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: all 0.3s ease, transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(154, 30, 162, 0.2);
    animation: heartbeat 1.3s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
    100% { transform: scale(1); }
}

.logo-text h3 {
    color: #2d3748;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.logo-text span {
    color: #9a1ea2;
    font-size: 0.65rem;
    font-weight: 500;
    max-width: 140px;
    display: block;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #9a1ea2;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #9a1ea2;
}

.cta-button {
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(154, 30, 162, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154, 30, 162, 0.4);
}

/* Header sosyal ikon */
.nav-cta .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    color: #fff;
    margin-right: 0.4rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(154, 30, 162, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.75rem;
}

.nav-cta .social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(154, 30, 162, 0.45);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #9a1ea2;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    background: #fff;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(154, 30, 162, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #2d3748;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: #9a1ea2;
    margin-bottom: 2rem;
    line-height: 1.4;
    text-shadow: 0 1px 5px rgba(154, 30, 162, 0.2);
}

.hero-description {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 580px;
    font-weight: 400;
}

/* Hero Contact Cards */
.hero-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
    margin-right: 4rem;
    max-width: 600px;
}

.hero-contact-cards .contact-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    box-shadow: 0 8px 22px rgba(154, 30, 162, 0.12);
    border: 1px solid rgba(154, 30, 162, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.hero-contact-cards .contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(154, 30, 162, 0.22);
    border-color: rgba(154, 30, 162, 0.28);
    cursor: pointer;
}

.hero-contact-cards .contact-card:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(154, 30, 162, 0.15);
}

.hero-contact-cards .contact-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(154, 30, 162, 0.25);
}

.hero-contact-cards .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.hero-contact-cards .contact-label {
    font-size: 0.72rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-contact-cards .contact-value {
    font-size: 0.95rem;
    color: #2d3748;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* EKG Heartbeat rhythm line under CTA */
.heartbeat-wrapper { 
    display: none;
}
.heartbeat-svg { 
    width: 100%; 
    height: 100%;
    position: relative;
}
.heartbeat-path {
    stroke: #9a1ea2;
    stroke-width: 2;
    stroke-linejoin: round;
    stroke-linecap: round;
    fill: none;
    animation: ekg 2s ease-in-out infinite;
    transform-origin: left;
}

@keyframes ekg {
    0% {
        stroke-dasharray: 0 1000;
        opacity: 0;
    }
    25% {
        stroke-dasharray: 1000 0;
        opacity: 1;
    }
    50% {
        stroke-dasharray: 1000 0;
        opacity: 1;
    }
    75% {
        stroke-dasharray: 1000 0;
        opacity: 1;
    }
    100% {
        stroke-dasharray: 0 1000;
        opacity: 0;
    }
}

.btn-primary {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(154, 30, 162, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(154, 30, 162, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.doctor-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-image {
    position: relative;
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, rgba(154, 30, 162, 0.08) 0%, rgba(237, 242, 247, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.doctor-image-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 5px;
}

/* Contact Strip - Removed as contacts are now in hero */

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Removed animated elements for cleaner look */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(154, 30, 162, 0.3);
}

.section-header h2 {
    font-size: 2.5rem;
    color: #3b0a3f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #9a1ea2;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Doctor Photo Section */
.doctor-photo-section {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.doctor-photo-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(250,247,255,0.9) 100%);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(154, 30, 162, 0.1);
    box-shadow: 0 20px 60px rgba(154, 30, 162, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 900px;
    width: 100%;
}

.doctor-photo-placeholder {
    width: 350px;
    height: 450px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(154, 30, 162, 0.2);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.doctor-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    padding: 1px;
}

.photo-placeholder-content {
    text-align: center;
    color: #9a1ea2;
    z-index: 1;
    position: relative;
}

.photo-placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.photo-placeholder-content span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.photo-placeholder-content small {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

.doctor-info-card {
    flex: 1;
    padding: 2rem;
}

.doctor-info-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.doctor-title {
    font-size: 1.3rem;
    color: #9a1ea2;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.doctor-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(154, 30, 162, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(154, 30, 162, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(154, 30, 162, 0.1);
    transform: translateX(5px);
}

.highlight-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

/* Education & Experience Section */
.education-experience-section {
    margin-bottom: 2rem;
}

/* Achievements Section */
.achievements-section {
    margin-top: 2rem;
}

.about-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 22px;
    border: 1px solid rgba(236, 72, 153, 0.18);
    box-shadow: 0 14px 36px rgba(236, 72, 153, 0.12);
}

.about-card h3 {
    color: #831843;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.education-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(236, 72, 153, 0.1);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.2);
}

.education-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
    transition: transform 0.3s ease;
}

.education-card:hover .education-icon {
    transform: scale(1.1) rotate(10deg);
}

.education-year {
    font-size: 1.8rem;
    font-weight: 800;
    color: #831843;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.education-card h4 {
    color: #831843;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.education-card p {
    color: #701a75;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.education-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(190, 24, 93, 0.1) 100%);
    color: #831843;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

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

.achievement-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.achievement-card {
    background: white;
    padding: 1.5rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(236, 72, 153, 0.2);
}

.achievement-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
    font-size: 1.35rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.achievement-card h4 {
    color: #831843;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.achievement-card p {
    color: #be185d;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: transparent;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.blog-card {
    background: #fff;
    border: 1px solid rgba(154, 30, 162, 0.12);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 12px 26px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(154, 30, 162, 0.15);
}

.blog-card h3 { 
    color: #3b0a3f; 
    margin: 0.75rem 0; 
    font-size: 1.4rem;
}

.blog-card h3 a { 
    text-decoration: none; 
    color: #3b0a3f;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover { 
    color: #9a1ea2; 
}

.blog-card p { 
    color: #5b4b5e;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card .btn-primary {
    margin-top: auto;
    align-self: flex-start;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card .btn-primary:hover {
    transform: translateX(5px);
}

.blog-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
    box-shadow: 0 12px 28px rgba(154,30,162,0.25);
    margin-bottom: 0.75rem;
}

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
/* Treatments Section */
.treatments {
    padding: 5rem 0 6rem;
    background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 50%, #e0e7ff 100%);
    position: relative;
}

.treatments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.03) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(99, 102, 241, 0.03) 100%);
    pointer-events: none;
}
.faq {
    padding: 5rem 0 6rem;
}

.testimonials {
    padding: 5rem 0;
    background: transparent;
}

.testimonials .section-header h2 { color: #3b0a3f; }

.testimonials-panel {
    background: #fff;
    border: 1px solid rgba(154, 30, 162, 0.12);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(154, 30, 162, 0.12);
    border-radius: 22px;
    padding: 1.25rem;
    box-shadow: 0 12px 26px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(154, 30, 162, 0.18);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(154, 30, 162, 0.25);
}

.testimonial-meta h4 {
    color: #3b0a3f;
    font-weight: 700;
    font-size: 1rem;
}

.stars { color: #f59e0b; font-size: 0.85rem; }

.testimonial-text {
    color: #5b4b5e;
    line-height: 1.7;
}

.faq .section-header h2 { color: #3b0a3f; }

.faq-panel {
    background: #fff;
    border: 1px solid rgba(154, 30, 162, 0.12);
    border-radius: 22px;
    padding: 1rem;
}

.faq-item + .faq-item { border-top: 1px solid rgba(154, 30, 162, 0.12); }

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #3b0a3f;
    font-weight: 600;
    cursor: pointer;
}

.faq-question i { color: #9a1ea2; transition: transform 0.2s ease; }
.faq-question[aria-expanded="true"] i { transform: rotate(45deg); }

.faq-answer { display: none; padding: 0 0.5rem 1rem; color: #5b4b5e; }
.faq-item.open .faq-answer { display: block; }

.treatments .section-header h2 {
    color: #3b0a3f;
}

.treatments-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2rem) / 3);
    gap: 1rem;
    transition: transform 0.4s ease;
}

@media (max-width: 1024px) {
    .slider-track { grid-auto-columns: calc((100% - 1.5rem) / 2); }
}

@media (max-width: 640px) {
    .slider-track { grid-auto-columns: 100%; }
}

.slider-slide { display: flex; }

.treatment-card {
    background: linear-gradient(135deg, #fff 0%, #fefcff 100%);
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    width: 100%;
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.1);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #6366f1 100%);
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(168, 85, 247, 0.18);
}

.treatment-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.treatment-card h3 {
    color: #581c87;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.treatment-card p {
    color: #6b46c1;
    font-size: 1rem;
    line-height: 1.6;
}

.slider-btn {
    border: none;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #3b0a3f;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.slider-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.14); }
.slider-btn:active { transform: translateY(0); }

.slider-btn.prev { margin-right: 0.25rem; }
.slider-btn.next { margin-left: 0.25rem; }

.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 1.25rem;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(154, 30, 162, 0.25);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.slider-dots button.active {
    background: #9a1ea2;
    transform: scale(1.2);
}

.services-panel {
    background: linear-gradient(180deg, rgba(154, 30, 162, 0.08) 0%, rgba(154, 30, 162, 0.06) 100%);
    border: 1px solid rgba(154, 30, 162, 0.12);
    border-radius: 28px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.services-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(154, 30, 162, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 340px;
    width: 100%;
}

/* Topic images for service/treatment cards */
.service-cover {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

@media (max-width: 640px) {
    .service-cover { height: 140px; }
}

/* üst parlama çizgisi yerine yumuşak hover */

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(154, 30, 162, 0.18);
}

.service-card:hover .service-icon {
    animation: iconBounce 0.6s ease-in-out;
    transform: scale(1.2) rotate(360deg);
}

@keyframes cardGlow {
    0% { box-shadow: 0 15px 35px rgba(236, 72, 153, 0.1); }
    50% { box-shadow: 0 25px 50px rgba(236, 72, 153, 0.3), 0 0 30px rgba(236, 72, 153, 0.2); }
    100% { box-shadow: 0 25px 50px rgba(236, 72, 153, 0.2); }
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(90deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    75% { transform: scale(1.1) rotate(270deg); }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(154, 30, 162, 0.3);
    transition: transform 0.3s ease;
}

.service-card h3 {
    color: #3b0a3f;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.4rem;
}

.service-card p {
    color: #5b4b5e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.service-features span {
    background: linear-gradient(135deg, rgba(154, 30, 162, 0.08) 0%, rgba(154, 30, 162, 0.05) 100%);
    color: #3b0a3f;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(154, 30, 162, 0.15);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(236, 72, 153, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.contact-card:active {
    transform: translateY(-2px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.contact-details h3 {
    color: #831843;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-details p {
    color: #701a75;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-details span {
    color: #be185d;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #831843;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #fce7f3;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fdf2f8;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    background: white;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

/* Footer */

.footer {
    --roofH: 140px; /* masaüstü çatı yüksekliği */
    background: linear-gradient(135deg, #e377a2 0%, #ec4cf5 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    /* px tabanlı çatı: responsive stabil görünüm */
    clip-path: polygon(0 var(--roofH), 50% 0, 100% var(--roofH), 100% 100%, 0 100%);
    margin-top: 3rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--roofH);
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    opacity: 0.3;
}

/* Çatı başlığı */
.footer-roof-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--roofH);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    gap: 0.15rem;
    pointer-events: none;
    padding: 8px 10px;
}

.footer-roof-title h3 {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    margin: 0;
    line-height: 1.1;
}

.footer-roof-title span {
    font-weight: 600;
    font-size: 0.75rem;
    opacity: 0.95;
    line-height: 1.1;
    max-width: 90%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-top: calc(var(--roofH) + 1rem);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.footer-logo .logo-text {
    text-align: center;
}

.footer-logo .logo-text h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.footer-logo .logo-text span {
    color: #fbcfe8;
    font-size: 1rem;
    font-weight: 500;
    display: block;
}

.footer-section p {
    color: #fbcfe8;
    line-height: 1.8;
    text-align: center;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: #fbcfe8;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.footer-section a:hover {
    color: white;
    background: rgba(236, 72, 153, 0.1);
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(236, 72, 153, 0.1);
}

.footer-contact p a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact p a:hover {
    color: #fff;
}

.footer-contact i {
    color: #ec4899;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(236, 72, 153, 0.3);
    color: #fbcfe8;
    margin-top: 2rem;
}

/* About page extras */
.sub-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 50%, #e0e7ff 100%);
}

.sub-hero .section-header { margin-bottom: 2rem; }

.bio-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.bio-text {
    background: #fff;
    border: 1px solid rgba(154, 30, 162, 0.12);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 12px 26px rgba(0,0,0,0.06);
}

.bio-text p { color: #4a5568; margin-bottom: 1rem; }

.bio-aside { display: flex; flex-direction: column; gap: 1rem; }

.stat-card {
    background: linear-gradient(135deg, #fff 0%, #fefcff 100%);
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: 16px;
    padding: 1rem 1.25rem;
}

.stat-card h4 { color: #581c87; font-size: 1.2rem; margin-bottom: 0.25rem; }
.stat-card span { color: #6b46c1; font-weight: 600; }

.quote-card {
    background: linear-gradient(135deg, rgba(154, 30, 162, 0.08) 0%, rgba(154, 30, 162, 0.05) 100%);
    border: 1px solid rgba(154, 30, 162, 0.18);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    font-style: italic;
    color: #3b0a3f;
}

.badge-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.badge-list span {
    background: linear-gradient(135deg, rgba(154, 30, 162, 0.08) 0%, rgba(154, 30, 162, 0.05) 100%);
    border: 1px solid rgba(154, 30, 162, 0.15);
    color: #3b0a3f; padding: 0.35rem 0.7rem; border-radius: 999px; font-weight: 600; font-size: 0.85rem;
}

.timeline { position: relative; margin-top: 2rem; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: rgba(154, 30, 162, 0.25); }
.timeline-item { position: relative; padding-left: 2.5rem; margin-bottom: 1rem; }
.timeline-item::before { content: ''; position: absolute; left: 4px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: #9a1ea2; box-shadow: 0 0 0 4px rgba(154, 30, 162, 0.15); }
.timeline-item h4 { color: #831843; margin-bottom: 0.25rem; }
.timeline-item p { color: #5b4b5e; }

.cert-grid, .pub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
.cert-card, .pub-card { background: #fff; border: 1px solid rgba(154, 30, 162, 0.12); border-radius: 16px; padding: 1rem; box-shadow: 0 12px 26px rgba(0,0,0,0.06); }
.cert-card h5, .pub-card h5 { color: #3b0a3f; margin-bottom: 0.5rem; }
.cert-card p, .pub-card p { color: #5b4b5e; font-size: 0.95rem; }

@media (max-width: 1024px) {
    .bio-grid { grid-template-columns: 1fr; }
    .cert-grid, .pub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .cert-grid, .pub-grid { grid-template-columns: 1fr; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .doctor-image {
        width: 350px;
        height: 450px;
    }
    
    .contact-strip-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: -10px 0 50px rgba(154, 30, 162, 0.2);
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        margin: 0.3rem 0;
    }
    
    .nav-link:hover {
        background: rgba(154, 30, 162, 0.08);
        color: #9a1ea2;
        transform: translateX(5px);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .cta-button {
        margin-top: 1rem;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
        max-width: none;
    }
    
    .hero-contact-cards {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        overflow-x: hidden;
        margin-right: 2rem;
    }
    
    .hero-contact-cards .contact-card {
        padding: 0.8rem;
        gap: 0.6rem;
    }
    
    .hero-contact-cards .contact-card[href^="tel"] {
        background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
        color: white;
        justify-content: center;
        padding: 1rem;
        transition: all 0.3s ease;
    }
    
    .hero-contact-cards .contact-card[href^="tel"]:hover {
        background: linear-gradient(135deg, #8b1e9a 0%, #b356c4 100%);
        transform: translateY(-6px) scale(1.05);
        box-shadow: 0 20px 40px rgba(154, 30, 162, 0.4);
    }
    
    .hero-contact-cards .contact-card[href^="tel"] .contact-icon {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .hero-contact-cards .contact-card[href^="tel"] .contact-label {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .hero-contact-cards .contact-card[href^="tel"] .contact-value {
        color: white;
    }
    
    .hero-contact-cards .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .hero-contact-cards .contact-value {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .doctor-image-container {
        height: 400px;
        order: -1;
    }
    
    .doctor-image {
        width: 320px;
        height: 400px;
    }
    
    .doctor-image-img { 
        width: 100%; 
        height: 100%; 
        object-fit: contain; 
        object-position: center;
        padding: 5px;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .doctor-photo-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .doctor-photo-placeholder { width: 280px; height: 360px; margin: 0 auto; }
    
    .doctor-info-card {
        padding: 1rem;
    }
    
    .doctor-info-card h3 {
        font-size: 2rem;
    }
    
    .doctor-title {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        /* Tablet: sabit px yüksekliği ile stabil çatı */
        --roofH: 100px;
        clip-path: polygon(0 var(--roofH), 50% 0, 100% var(--roofH), 100% 100%, 0 100%);
        margin-top: 2rem;
    }
    
    .footer::before {
        height: var(--roofH);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: calc(var(--roofH) + 1rem);
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .footer-roof-title {
        height: var(--roofH);
    }
    
    .footer-roof-title h3 {
        font-size: 1.1rem;
    }
    
    .footer-roof-title span {
        font-size: 0.75rem;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
    }
    
    .footer-logo .logo-text h3 {
        font-size: 1.2rem;
    }
    
    .footer-logo .logo-text span {
        font-size: 0.9rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .doctor-image {
        width: 280px;
        height: 350px;
    }
    
    .doctor-placeholder {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .doctor-photo-placeholder { width: 240px; height: 300px; }
    
    .doctor-info-card h3 {
        font-size: 1.8rem;
    }
    
    .doctor-title {
        font-size: 1rem;
    }
    
    .photo-placeholder-content i {
        font-size: 3rem;
    }
    
    .photo-placeholder-content span {
        font-size: 1rem;
    }
    
    .contact-strip {
        padding: 1.5rem 0;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-header h2 {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .doctor-card {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }

    .contact-card[href^="tel"] {
        background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
        color: white;
    }

    .contact-card[href^="tel"] .contact-icon {
        background: rgba(255, 255, 255, 0.2);
    }

    .contact-card[href^="tel"] h3,
    .contact-card[href^="tel"] p,
    .contact-card[href^="tel"] span {
        color: white;
    }

    .footer {
        /* Mobil: sabit px yüksekliği */
        --roofH: 80px;
        clip-path: polygon(0 var(--roofH), 50% 0, 100% var(--roofH), 100% 100%, 0 100%);
        margin-top: 1.5rem;
    }
    
    .footer::before { height: var(--roofH); }
    .footer-content { padding-top: calc(var(--roofH) + 0.75rem); }
    .footer-roof-title { 
        height: var(--roofH); 
    }
    
    .footer-roof-title h3 {
        font-size: 0.95rem;
    }
    
    .footer-roof-title span {
        font-size: 0.65rem;
    }
    
    .footer-logo .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .footer-logo .logo-text h3 {
        font-size: 1.1rem;
    }
    
    .footer-logo .logo-text span {
        font-size: 0.8rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-contact p {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
/* WhatsApp Floating Button */
.whatsapp-fab {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9a1ea2 0%, #c56ccd 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(154, 30, 162, 0.35);
    z-index: 9999;
    transition: all 0.3s ease;
    overflow: visible;
    border: none;
    outline: none;
    cursor: pointer;
}

.whatsapp-fab:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 40px rgba(154, 30, 162, 0.6);
    background: linear-gradient(135deg, #8b1e9a 0%, #b356c4 100%);
}

.whatsapp-fab:active {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 30px rgba(154, 30, 162, 0.4);
}

/* Gelişmiş pulse animasyonu */
.whatsapp-fab::before,
.whatsapp-fab::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(154, 30, 162, 0.3) 0%, rgba(197, 108, 205, 0.3) 100%);
    animation: fabPulse 3s infinite;
    z-index: -1;
}

.whatsapp-fab::after {
    animation-delay: 1.5s;
    inset: -12px;
    background: linear-gradient(135deg, rgba(154, 30, 162, 0.2) 0%, rgba(197, 108, 205, 0.2) 100%);
}

@keyframes fabPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .whatsapp-fab {
        left: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
        font-size: 26px;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Heart Rhythm Loading Screen */
.heart-rhythm-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 30%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease;
}

.heart-rhythm-loader.fade-out {
    opacity: 0;
}

.loader-content {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.heart-icon {
    font-size: 3rem;
    color: #9a1ea2;
    margin-bottom: 2rem;
    animation: heartbeat 1.3s ease-in-out infinite;
}

.rhythm-line {
    width: 100%;
    height: 60px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rhythm-svg {
    width: 200px;
    height: 40px;
}

.rhythm-path {
    stroke: #9a1ea2;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: rhythmDraw 2s ease-in-out infinite;
}

@keyframes rhythmDraw {
    0% {
        stroke-dasharray: 0 300;
        opacity: 0.3;
    }
    50% {
        stroke-dasharray: 300 0;
        opacity: 1;
    }
    100% {
        stroke-dasharray: 0 300;
        opacity: 0.3;
    }
}

.loading-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.loading-subtitle {
    font-size: 1rem;
    color: #9a1ea2;
    font-weight: 500;
}

@keyframes heartbeatPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes heartRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Particle Effects */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(236, 72, 153, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Animations */
.hero-content,
.service-card,
.achievement-card,
.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

.morphing-icon {
    animation: morphing 3s infinite ease-in-out;
}

@keyframes morphing {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        border-radius: 50%;
    }
    25% { 
        transform: scale(1.1) rotate(90deg);
        border-radius: 30%;
    }
    50% { 
        transform: scale(0.9) rotate(180deg);
        border-radius: 20%;
    }
    75% { 
        transform: scale(1.1) rotate(270deg);
        border-radius: 30%;
    }
}

/* Text Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 3px solid #ec4899;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #ec4899; }
}

/* Magnetic Effect */
.magnetic {
    transition: transform 0.3s ease;
}

.magnetic:hover {
    transform: scale(1.05);
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.3);
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.ripple:hover::before {
    width: 300px;
    height: 300px;
}

/* Additional Animations */
@keyframes floatHeart {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Medical cursor variations */
.custom-cursor.medical::after {
    content: '🩺';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    animation: rotate 2s infinite linear;
}

.custom-cursor.heart::after {
    content: '💗';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    animation: heartbeat 1s infinite;
}

.custom-cursor.phone::after {
    content: '📞';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    animation: shake 0.5s infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translate(-50%, -50%) translateX(0); }
    25% { transform: translate(-50%, -50%) translateX(-2px); }
    75% { transform: translate(-50%, -50%) translateX(2px); }
}

/* Enhanced hover effects */
.btn-primary:hover,
.cta-button:hover {
    animation: buttonPulse 0.6s ease-in-out;
}

@keyframes buttonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Interactive floating cards */
.floating-card:hover {
    animation: cardFloat 2s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Doctor card special effects */
.doctor-card:hover {
    animation: doctorGlow 1s ease-in-out;
}

@keyframes doctorGlow {
    0% { 
        box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
    }
    50% { 
        box-shadow: 0 25px 50px rgba(236, 72, 153, 0.3), 
                    0 0 50px rgba(236, 72, 153, 0.2);
    }
    100% { 
        box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
    }
}

/* Specialty items animation */
.specialty-item:hover {
    animation: specialtyPulse 0.5s ease-in-out;
}

@keyframes specialtyPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Achievement cards enhanced hover */
.achievement-card:hover .achievement-icon {
    animation: iconSpin 1s ease-in-out;
}

@keyframes iconSpin {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

/* Contact form enhancements */
.form-group:hover {
    animation: formGroupGlow 0.3s ease-in-out;
}

@keyframes formGroupGlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

/* Navigation enhanced */
.nav-link:hover {
    animation: navLinkBounce 0.5s ease-in-out;
}

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

/* Mobil Responsive Düzeltmeler */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-contact-cards {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 100%;
    }
    
    .hero-contact-cards .contact-card {
        padding: 0.8rem;
        gap: 0.6rem;
    }
    
    .hero-contact-cards .contact-value {
        font-size: 0.85rem;
    }
    
    .doctor-photo-container {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .doctor-photo-placeholder {
        width: 200px;
        height: 250px;
    }
    
    .doctor-info-card h3 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .achievement-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-panel {
        padding: 2rem 1rem;
        margin: 0 10px;
    }
    
    .treatments-slider {
        margin: 0 10px;
    }
    
    .testimonials-panel {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .faq-panel {
        padding: 1rem;
        margin: 0 10px;
    }
    
    .contact-content {
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .whatsapp-fab {
        left: 15px;
        bottom: 15px;
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .doctor-photo-placeholder {
        width: 180px;
        height: 220px;
    }
    
    .doctor-info-card h3 {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 1.5rem;
        min-height: 280px;
    }
    
    .treatment-card {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .footer {
        --roofH: 70px;
    }
    
    .footer-roof-title h3 {
        font-size: 0.9rem;
    }
    
    .footer-roof-title span {
        font-size: 0.6rem;
    }
}

/* Yatay kaydırma engelleme */
@media (max-width: 768px) {
    .floating-elements {
        display: none;
    }
    
    .floating-medical,
    .floating-circle,
    .floating-diamond {
        display: none;
    }
    
    .custom-cursor {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

/* Slider düzeltmeleri */
@media (max-width: 768px) {
    .slider-track {
        grid-auto-columns: 100%;
        gap: 0.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .treatment-card {
        margin: 0 5px;
    }
}

/* Form düzeltmeleri */
@media (max-width: 768px) {
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* iOS zoom engelleme */
    }
    
    .submit-btn {
        width: 100%;
        padding: 1rem;
    }
}

/* WhatsApp FAB mobil düzeltmesi */
@media (max-width: 480px) {
    .whatsapp-fab {
        left: 12px;
        bottom: 12px;
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .whatsapp-fab::before,
    .whatsapp-fab::after {
        display: none;
    }
}

/* Mobil Responsive Son Düzeltmeler */
@media (max-width: 768px) {
    /* Tüm elementlerin taşmasını engelle */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Body ve html overflow kontrolü */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    /* Container genişlik kontrolü */
    .container,
    .nav-container,
    .hero-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    
    /* Hero section düzeltmeleri */
    .hero {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: hidden !important;
    }
    
    .hero-title {
        font-size: 2.6rem !important;
        line-height: 1.1 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        max-width: 100% !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
    }
    
    /* Contact cards mobil düzeltmesi */
    .hero-contact-cards {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 10px !important;
        margin-right: 2rem !important;
    }
    
    .hero-contact-cards .contact-card {
        padding: 0.8rem !important;
        gap: 0.6rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-contact-cards .contact-value {
        font-size: 0.8rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Doctor section düzeltmeleri */
    .doctor-photo-container {
        padding: 1.5rem !important;
        margin: 0 10px !important;
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
    }
    
    .doctor-photo-placeholder { width: 220px !important; height: 280px !important; max-width: 100% !important; }
    
    .doctor-info-card h3 {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Services ve treatments düzeltmeleri */
    .services-panel,
    .treatments-slider,
    .testimonials-panel,
    .faq-panel {
        margin: 0 10px !important;
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
        padding: 1.5rem !important;
    }
    
    /* Contact form düzeltmeleri */
    .contact-content {
        gap: 1.5rem !important;
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-form {
        padding: 2rem 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Footer düzeltmeleri */
    .footer-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    /* WhatsApp FAB mobil düzeltmesi */
    .whatsapp-fab {
        left: 10px !important;
        bottom: 10px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 22px !important;
        z-index: 9999 !important;
    }
    
    /* Slider düzeltmeleri */
    .slider-track {
        grid-auto-columns: 100% !important;
        gap: 0.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .slider-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.9rem !important;
    }
    
    .service-card,
    .treatment-card {
        margin: 0 5px !important;
        width: calc(100% - 10px) !important;
        max-width: calc(100% - 10px) !important;
    }
    
    /* Form input iOS zoom engelleme */
    .form-group input,
    .form-group textarea {
        font-size: 16px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .submit-btn {
        width: 100% !important;
        padding: 1rem !important;
        max-width: 100% !important;
    }
    
    /* Floating elementleri mobilde gizle */
    .floating-elements,
    .floating-medical,
    .floating-circle,
    .floating-diamond,
    .custom-cursor {
        display: none !important;
    }
    
    /* Body cursor'ı mobilde normal yap */
    body {
        cursor: auto !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .section-header h2 {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }
    
    .section-header p {
        font-size: 0.9rem !important;
    }
    
    .doctor-photo-placeholder {
        width: 200px !important;
        height: 250px !important;
    }
    
    .doctor-info-card h3 {
        font-size: 1.4rem !important;
    }
    
    .service-card {
        padding: 1.2rem !important;
        min-height: 250px !important;
    }
    
    .treatment-card {
        padding: 1.2rem !important;
        min-height: 220px !important;
    }
    
    .testimonial-card {
        padding: 0.8rem !important;
    }
    
    .contact-card {
        padding: 1.2rem !important;
    }
    
    .footer {
        --roofH: 60px !important;
    }
    
    .footer-roof-title h3 {
        font-size: 0.8rem !important;
    }
    
    .footer-roof-title span {
        font-size: 0.55rem !important;
    }
    
    .whatsapp-fab {
        left: 10px !important;
        bottom: 10px !important;
        width: 58px !important;
        height: 58px !important;
        font-size: 24px !important;
    }
    
    .whatsapp-fab::before,
    .whatsapp-fab::after {
        display: none !important;
    }
}

/* Yatay kaydırma engelleme - Tüm cihazlar için */
@media (max-width: 768px) {
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative !important;
    }
    
    /* Tüm container'ların taşmasını engelle */
    .container,
    .nav-container,
    .hero-container,
    .about-content,
    .services-panel,
    .treatments-slider,
    .testimonials-panel,
    .faq-panel,
    .contact-content,
    .footer-content {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* EloveAgency Credit Link Styles */
.elove-credit {
    text-align: center;
    padding: 10px 0;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.elove-link {
    color: #9c27b0;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    animation: purpleGlow 2s ease-in-out infinite alternate;
}

.elove-link:hover {
    color: #e91e63;
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.8);
    transform: scale(1.05);
}

@keyframes purpleGlow {
    0% {
        text-shadow: 0 0 5px rgba(156, 39, 176, 0.5),
                     0 0 10px rgba(156, 39, 176, 0.3),
                     0 0 15px rgba(156, 39, 176, 0.1);
        color: #9c27b0;
    }
    50% {
        text-shadow: 0 0 10px rgba(156, 39, 176, 0.8),
                     0 0 20px rgba(156, 39, 176, 0.6),
                     0 0 30px rgba(156, 39, 176, 0.4);
        color: #ba68c8;
    }
    100% {
        text-shadow: 0 0 15px rgba(156, 39, 176, 0.9),
                     0 0 25px rgba(156, 39, 176, 0.7),
                     0 0 35px rgba(156, 39, 176, 0.5);
        color: #ce93d8;
    }
}

.career-timeline-section {
    margin-top: 2rem;
}

.career-timeline-section .about-card {
    background: #fff;
    border: 1px solid rgba(154, 30, 162, 0.12);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.career-timeline-section .about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.career-timeline-section .timeline {
    position: relative;
    margin-top: 2rem;
}

.career-timeline-section .timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(154, 30, 162, 0.25);
}

.career-timeline-section .timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.career-timeline-section .timeline-item::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #9a1ea2;
    box-shadow: 0 0 0 4px rgba(154, 30, 162, 0.15);
}

.career-timeline-section .timeline-item h4 {
    color: #831843;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.career-timeline-section .timeline-item p {
    color: #5b4b5e;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .career-timeline-section .about-card {
        padding: 1.5rem;
    }
    
    .career-timeline-section .timeline-item {
        padding-left: 2rem;
    }
    
    .career-timeline-section .timeline-item h4 {
        font-size: 1rem;
    }
}
