/*
Theme Name: Trabzon Ortodonti Tema
Theme URI: https://trabzonortodonti.com/
Description: Ortodonti kliniği için özel olarak tasarlanmış, modern, animasyonlu, canlı renk geçişlerine ve cam morfolojisine sahip premium tanıtım teması.
Version: 1.0.0
Author: Antigravity AI
Author URI: https://google.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trabzon-ortodonti-theme
*/

/* ----------------------------------------------------
   1. DEĞİŞKENLER VE TASARIM SİSTEMİ
   ---------------------------------------------------- */
:root {
    /* Renk Paleti - Canlı ve Modern */
    --primary: #00F2FE;          /* Canlı Turkuaz / Elektrik Mavisi */
    --secondary: #FF007F;        /* Neon Pembe / Magenta */
    --accent: #4facfe;           /* Parlak Mavi */
    --dark-blue: #0F172A;        /* Koyu Gece Mavisi (Metinler ve Koyu Bölümler İçin) */
    --light-bg: #F8FAFC;         /* Temiz Açık Gri Arka Plan */
    --white: #FFFFFF;
    
    /* Gradyanlar */
    --gradient-primary: linear-gradient(135deg, #00F2FE 0%, #4facfe 100%);
    --gradient-vibrant: linear-gradient(135deg, #00F2FE 0%, #FF007F 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    
    /* Tipografi */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Gölgeler ve Kenarlıklar */
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
    --shadow-vibrant: 0 15px 35px rgba(0, 242, 254, 0.15);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    --border-glass: 1px solid rgba(255, 255, 255, 0.4);
    
    /* Yuvarlatmalar */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Animasyonlar */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------
   2. GLOBAL SIFIRLAMALAR VE YAPILAR
   ---------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--dark-blue);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

ul {
    list-style: none;
}

/* ----------------------------------------------------
   3. YARDIMCI VE YAYGIN SINIFLAR (UTILITIES)
   ---------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.gradient-text {
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Modern Cam Morfolojisi (Glassmorphism) */
.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.1);
    border-color: rgba(0, 242, 254, 0.4);
}

/* Premium Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-vibrant);
    color: var(--white);
    box-shadow: var(--shadow-vibrant);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    box-shadow: 0 20px 40px rgba(255, 0, 127, 0.25);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
}

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

/* Bölüm Başlığı Yapısı */
.section-header {
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header span {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: #64748B;
    font-size: 1.1rem;
}

/* Yüzen WhatsApp Butonu */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    font-size: 32px;
    transition: var(--transition-smooth);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    background: #20BA5A;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ----------------------------------------------------
   4. RESPONSIVE YAPI (MEDYA SORGULARI)
   ---------------------------------------------------- */
@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

/* ----------------------------------------------------
   5. HEADER VE YAPILARI
   ---------------------------------------------------- */
.site-header {
    transition: var(--transition-smooth);
}

/* ----------------------------------------------------
   6. HERO SECTION (GİRİŞ ALANI)
   ---------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(255, 0, 127, 0.05) 0%, transparent 50%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.1);
    color: #00b4d8;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 450px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2) 0%, rgba(255, 0, 127, 0.15) 100%);
    filter: blur(60px);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-vibrant);
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    max-width: 100%;
    animation: floatGently 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9) rotate(0deg); opacity: 0.8; }
    100% { transform: scale(1.1) rotate(180deg); opacity: 1; }
}

@keyframes floatGently {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* ----------------------------------------------------
   7. FEATURES SECTION (ÖZELLİKLER)
   ---------------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 40px;
    text-align: left;
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-vibrant);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ----------------------------------------------------
   8. ABOUT SPECIALIST (HEKİM BİYOGRAFİSİ)
   ---------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

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

.about-image-container {
    position: relative;
}

.about-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.15) 0%, rgba(0, 242, 254, 0.1) 100%);
    filter: blur(40px);
    z-index: 1;
    border-radius: var(--radius-lg);
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    border: var(--border-glass);
    box-shadow: var(--shadow-soft);
    background: white;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.about-specialization {
    color: var(--secondary);
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 24px;
    display: inline-block;
}

.about-content p {
    color: #475569;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
}

.stat-item h4 {
    font-size: 2.2rem;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 0;
}

/* ----------------------------------------------------
   9. TREATMENTS SECTION (TEDAVİLER)
   ---------------------------------------------------- */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.treatment-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.treatment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.treatment-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.1);
    color: #00b4d8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
    background: rgba(255, 0, 127, 0.08);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.treatment-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.treatment-card p {
    color: #64748B;
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.treatment-features-list {
    margin-bottom: 24px;
}

.treatment-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 10px;
}

.treatment-features-list li i {
    color: #22C55E;
    width: 16px;
    height: 16px;
}

.treatment-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.treatment-card:hover .treatment-link {
    color: var(--secondary);
}

/* ----------------------------------------------------
   10. BEFORE/AFTER SLIDER (GÜLÜŞ DEĞİŞİMİ)
   ---------------------------------------------------- */
.smile-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #EDF2F7 100%);
}

.slider-container {
    position: relative;
    max-width: 800px;
    height: 480px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    border: 3px solid white;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.before-img {
    z-index: 1;
}

.after-img {
    z-index: 2;
    width: 50%; /* Slider kontrolü ile değişecek */
    border-right: 2px solid var(--white);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 44px;
    height: 100%;
    margin-left: -22px;
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.handle-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    border: 2px solid var(--primary);
    transition: transform 0.2s;
}

.slider-handle:hover .handle-button {
    transform: scale(1.1);
}

.slider-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(15, 23, 42, 0.7);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    z-index: 5;
    pointer-events: none;
    letter-spacing: 1px;
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

/* ----------------------------------------------------
   11. CLINIC TECHNOLOGY (KLİNİK TEKNOLOJİSİ)
   ---------------------------------------------------- */
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.tech-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.tech-list {
    margin-top: 30px;
}

.tech-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.tech-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
    box-shadow: var(--shadow-vibrant);
}

.tech-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.tech-info p {
    color: #64748B;
    font-size: 0.95rem;
}

.tech-graphics {
    position: relative;
    display: flex;
    justify-content: center;
}

/* ----------------------------------------------------
   12. FAQ SECTION (SIKÇA SORULAN SORULAR)
   ---------------------------------------------------- */
.faq-section {
    background: #F8FAFC;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-blue);
    transition: var(--transition-fast);
}

.faq-trigger:hover {
    color: var(--secondary);
}

.faq-icon {
    transition: transform var(--transition-fast);
    color: #94a3b8;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-panel-content {
    padding: 0 24px 24px 24px;
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
}

/* ----------------------------------------------------
   13. CONTACT & APPOINTMENT FORM (İLETİŞİM)
   ---------------------------------------------------- */
.contact-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(255, 0, 127, 0.05) 0%, transparent 40%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-details h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-details p {
    color: #475569;
    margin-bottom: 40px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.contact-card-item {
    display: flex;
    gap: 20px;
    padding: 24px;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-card-text p, .contact-card-text a {
    color: #64748B;
    font-size: 0.95rem;
}

/* Cam Form Tasarımı */
.appointment-form-box {
    padding: 48px;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #64748B;
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-blue);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 242, 254, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn-wrapper {
    margin-top: 32px;
}

.form-response-msg {
    margin-top: 20px;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    display: none;
    animation: fadeInUp 0.4s ease forwards;
}

.form-response-msg.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-response-msg.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Yükleme Spinner Animasyonu */
.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}

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

/* ----------------------------------------------------
   14. FOOTER LAYOUT (ALT ALAN)
   ---------------------------------------------------- */
.site-footer {
    background: var(--dark-blue);
    color: #94A3B8;
    padding-top: 80px;
}

.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6 {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.brand-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.brand-col .logo-icon {
    color: var(--primary);
}

.brand-col .footer-logo span {
    color: var(--white);
}

.brand-col .footer-logo span span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-col .footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--dark-blue);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.contact-info li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.contact-info li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-info a {
    color: #94A3B8;
}

.contact-info a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    padding-bottom: 40px;
}

.map-wrapper {
    margin-bottom: 40px;
    overflow: hidden;
    padding: 8px;
    border-color: rgba(255, 255, 255, 0.1);
}

.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 16px;
}

/* ----------------------------------------------------
   15. RESPONSIVE GÜNCELLEMELERİ
   ---------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-grid, .about-grid, .tech-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content, .about-content, .tech-content, .contact-details {
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .about-image-container, .tech-graphics {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .features-grid, .treatments-grid {
        grid-template-columns: 1fr;
    }
    .appointment-form-box {
        padding: 24px;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .slider-container {
        height: 320px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .bottom-bar {
        text-align: center;
        justify-content: center;
    }
}

