/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

/* Mobil performans optimizasyonu */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea, button {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Mobil cihazlar için */
@media (max-width: 768px) {
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}


.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.site-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.site-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.logo h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 300;
}

.appointment-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(37, 211, 102, 0.4),
        0 0 20px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.appointment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.appointment-btn:hover::before {
    left: 100%;
}

.appointment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 50px rgba(37, 211, 102, 0.6),
        0 0 30px rgba(37, 211, 102, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #128C7E, #25D366);
}

.appointment-btn:active {
    transform: translateY(-1px);
    box-shadow: 
        0 15px 40px rgba(37, 211, 102, 0.5),
        0 0 25px rgba(37, 211, 102, 0.4);
}


/* Services Menu */
.services-menu {
    margin-top: 4rem;
    width: 100%;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.services-dropdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.1), transparent);
    transition: left 0.6s;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-header:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.service-header i:first-child {
    font-size: 1.5rem;
    color: #25D366;
    margin-right: 1rem;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
}

.service-header:hover i:first-child {
    text-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
    transform: scale(1.1);
}

.service-header span {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.arrow {
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.service-header:hover .arrow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.service-item.active .arrow {
    transform: rotate(180deg);
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(0, 0, 0, 0.3);
}

.service-content.open {
    max-height: 1000px;
}

.service-details {
    padding: 2rem;
    color: white;
}

.service-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #25D366;
}

.service-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 0;
}

.service-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.service-features .feature i {
    color: #25D366;
    font-size: 0.9rem;
}

.service-features .feature span {
    color: white;
    font-weight: 500;
}





/* Contact Section */
.contact {
    padding: 100px 0;
    background: #000000;
    color: white;
    position: relative;
}


.contact .section-title {
    color: white;
    position: relative;
    z-index: 2;
}

.contact-info {
    position: relative;
    z-index: 2;
}

/* SEO Content Section */
.seo-content {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.seo-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

.seo-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #25D366;
    margin: 2rem 0 1rem 0;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.seo-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-align: justify;
}

.seo-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.seo-content li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.seo-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

/* Harita Bölümü */
.map-container {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.map-container h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.map-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border-color: rgba(37, 211, 102, 0.5);
}

.map-wrapper iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    to {
        text-shadow: 2px 2px 20px rgba(255,255,255,0.5), 2px 2px 4px rgba(0,0,0,0.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .site-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .appointment-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .map-container h3 {
        font-size: 1.5rem;
    }
    
    .map-wrapper {
        padding: 15px;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .seo-content {
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    
    .seo-content h2 {
        font-size: 1.8rem;
    }
    
    .seo-content h3 {
        font-size: 1.5rem;
    }
    
    .seo-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .seo-content li {
        font-size: 1rem;
        padding: 0.6rem 0;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
        font-size: 3rem;
    }
}

/* Mobile First Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .site-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .appointment-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .services-menu {
        margin-top: 2rem;
    }
    
    .services-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-item {
        margin-bottom: 0.5rem;
    }
    
    .service-header {
        padding: 1rem;
    }
    
    .service-header i:first-child {
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }
    
    .service-header span {
        font-size: 1.1rem;
    }
    
    .service-details {
        padding: 1.5rem;
    }
    
    .service-details h3 {
        font-size: 1.4rem;
    }
    
    .service-details p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .service-features .feature {
        padding: 0.4rem;
        font-size: 0.9rem;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .contact-item {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .map-container {
        margin-top: 2rem;
    }
    
    .map-container h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .map-wrapper {
        padding: 10px;
    }
    
    .map-wrapper iframe {
        height: 250px;
        border-radius: 10px;
    }
    
    .seo-content {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
    
    .seo-content h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .seo-content h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .seo-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: left;
    }
    
    .seo-content li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
    }
    
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .site-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .appointment-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .service-header {
        padding: 1.2rem;
    }
    
    .service-details {
        padding: 1.8rem;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .seo-content {
        padding: 2rem 1.5rem;
    }
    
    .seo-content h2 {
        font-size: 1.6rem;
    }
    
    .seo-content h3 {
        font-size: 1.4rem;
    }
}
