/* 
    Dermoport Landing Page V2.4.0
    Architected by Antigravity AI
    Premium, Clean, Performance-Focused
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-bg: #fdfaf8;
    --accent-gold: #b58934;
    --accent-gold-light: #d4a755;
    --accent-hover: #96712b;
    --text-main: #2d2d2d;
    --text-muted: #707070;
    --whatsapp-green: #25d366;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shine: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);

    /* Spacing & Layout */
    --container-width: 600px;
    --section-gap: 4.5rem;
    --card-radius: 24px;

    /* Shadows */
    --shadow-soft: 0 10px 40px -10px rgba(181, 137, 52, 0.1);
    --shadow-strong: 0 20px 50px -15px rgba(181, 137, 52, 0.2);
}

/* 1. RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

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

.hidden {
    display: none !important;
}

/* 2. BACKGROUND ELEMENTS */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(181, 137, 52, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.blob-1 {
    top: -100px;
    right: -100px;
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    opacity: 0.6;
}

/* 3. LIVE VISITOR PILL */
.live-visitor-pill {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 20px; /* Slightly more padding */
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    white-space: nowrap; /* Prevent text wrap */
    width: max-content; /* Ensure it fits content */
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px #2ecc71;
    animation: blink 2s infinite;
}

#live-count-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* 4. HEADER & HERO */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 250, 248, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(181, 137, 52, 0.1);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.menu-container {
    position: relative;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--accent-gold);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 16px;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: #f8f8f8;
    color: var(--accent-gold);
}

.btn-randevu-header {
    background: var(--accent-gold);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(181, 137, 52, 0.3);
}

.btn-randevu-header:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 137, 52, 0.4);
}

.site-logo {
    height: 35px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.hero {
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* 5. PROCESS STEPS (1-2-3) */
.process-section {
    margin-bottom: var(--section-gap);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 1.25rem 2rem;
    border-radius: 24px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(181, 137, 52, 0.3);
}

.step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(181, 137, 52, 0.15);
    margin: 0 1rem;
    margin-bottom: 1.5rem;
}

/* 6. SELECTION STEPS & CARDS */
.selection-step {
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.6s ease forwards;
}

.step-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.step-title span {
    background: var(--accent-gold);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.service-card {
    height: 180px;
    /* Square/Landscape balance */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border-radius: var(--card-radius);
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card[data-service="yuz-germe"] {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%), url('img/yuz-germe.png');
}

.service-card[data-service="bolgesel-incelme"] {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%), url('img/zayiflama.png');
}

.service-card span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

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

.service-card.active {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-strong);
}

/* 7. MODAL SYSTEM */
.modal-trigger {
    width: 100%;
    padding: 1.25rem 1.75rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
}

.modal-trigger:hover {
    background: rgba(255, 255, 255, 0.8);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 300000; /* Increased to be above notifications */
    display: none;
    align-items: flex-end;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    width: 100%;
    background: white;
    border-radius: 32px 32px 0 0;
    padding: 2rem 1.5rem;
    animation: slideUp 0.4s ease-out;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Added for vertical alignment */
    margin-bottom: 2rem;
}

.close-modal {
    background: #f5f5f5;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-modal:hover {
    background: #eeeeee;
    color: var(--text-main);
    transform: rotate(90deg);
}

.close-modal i {
    font-size: 1.1rem;
}

.city-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.city-item {
    padding: 1.25rem;
    background: #f8f8f8;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.city-item:hover,
.city-item.selected {
    background: var(--accent-gold);
    color: white;
}

/* 8. CONTACT CARD (RESULT) */
#contact-section {
    display: none;
    margin-bottom: var(--section-gap);
}

#contact-section.show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-strong);
}

.branch-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.branch-address {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: block;
}

/* Pricing Section */
.price-promo-box {
    background: #fff9f0;
    border: 1px dashed var(--accent-gold);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    animation: pulse-border 2s infinite;
}

.promo-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.price-display {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.old-price {
    text-decoration: line-through;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.current-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e67e22;
}

.price-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Service Badge */
.service-card {
    position: relative;
}

.promo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e67e22;
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
    z-index: 5;
}

@keyframes pulse-border {
    0% { border-color: var(--accent-gold); }
    50% { border-color: transparent; }
    100% { border-color: var(--accent-gold); }
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    padding: 1.25rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
}

.btn-call {
    background: #f0f0f0;
    color: var(--text-main);
}

/* 9. TESTIMONIALS (VIDEOS) */
.testimonials {
    margin-bottom: var(--section-gap);
}

.video-carousel {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

.video-track {
    display: flex;
    gap: 1.25rem;
    padding: 0 1.25rem;
}

.video-card {
    width: 160px;
    height: 280px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.carousel-hint {
    text-align: center;
    margin-top: 2rem; /* Added more space */
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* 10. TRUST & STATS */
.trust-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: var(--section-gap);
}

.feature-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 2.5rem 1.5rem;
    background: var(--accent-gold);
    border-radius: 30px;
    color: white;
    margin-bottom: var(--section-gap);
}

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

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    display: inline-block;
}

.stat-suffix {
    font-size: 1.75rem;
    font-weight: 800;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* 11. FAQ ACCORDION */
.faq-section {
    margin-bottom: var(--section-gap);
}

.faq-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(181, 137, 52, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-out;
    background: rgba(255, 255, 255, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 12. FOOTER */
footer {
    background: white;
    color: var(--text-main);
    padding: 4rem 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: none;
}

.footer-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.footer-social a {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.footer-bottom {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
}

/* 13. NOTIFICATIONS */
.footer-legal {
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 5px;
}

/* Sticky WhatsApp Button */
.sticky-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-wa 2s infinite;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

@keyframes pulse-wa {
    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);
    }
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

/* 14. ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* 15. MOBILE OPTIMIZATIONS (Consolidated) */

/* 16. SERVICE DETAILS */
.service-details-section {
    margin-bottom: var(--section-gap);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    transition: 0.3s;
    box-shadow: var(--shadow-soft);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.detail-image {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-card:hover .detail-image img {
    transform: scale(1.08);
}

.detail-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    font-weight: 700;
}

.detail-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.detail-list li i {
    color: var(--accent-gold);
}


/* 18. TURKEY MAP */
.map-section {
    margin-bottom: var(--section-gap);
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header p {
    color: var(--text-muted);
}

.map-container {
    background: #fcfaf7;
    padding: 3rem 1.5rem;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

#turkey-map-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.fallback-map {
    width: 100%;
    height: auto;
    opacity: 0.8;
    filter: sepia(0.2) hue-rotate(-20deg) brightness(1.1);
    object-fit: contain;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.city-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-gold);
    transition: 0.3s;
    z-index: 5;
}

.city-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    animation: city-pulse 2s infinite;
}

@keyframes city-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.city-dot::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    opacity: 0;
    animation: pulse-map 2s infinite;
}

@keyframes pulse-map {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

.city-dot:hover {
    transform: scale(1.5);
    z-index: 10;
}

.city-dot span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-main);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.city-dot:hover span {
    opacity: 1;
    top: -35px;
}

@media (min-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ba-container {
        flex-direction: row;
    }
    .ba-slider {
        flex: 1;
    }
}

/* 11. FOOTER */
footer {
    background: #fff;
    padding: 4rem 1.5rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-address {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a i {
    color: var(--accent-gold);
    margin-right: 8px;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: #f8f8f8;
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
    transform: translateY(-5px);
    background: var(--accent-gold);
    color: white;
}

.footer-social a:hover .fa-youtube {
    background: #ff0000;
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.footer-legal {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    font-size: 0.8rem;
    color: #aaa;
    border-top: 1px solid #f9f9f9;
    padding-top: 2rem;
}

/* Randevu Animation */
@keyframes shake-highlight {
    0% { transform: translateX(0); box-shadow: var(--shadow-soft); }
    25% { transform: translateX(-4px); box-shadow: 0 0 15px var(--accent-gold); }
    50% { transform: translateX(4px); box-shadow: 0 0 20px var(--accent-gold); }
    75% { transform: translateX(-4px); box-shadow: 0 0 15px var(--accent-gold); }
    100% { transform: translateX(0); box-shadow: var(--shadow-soft); }
}

.shake-highlight {
    animation: shake-highlight 0.4s ease 3;
    border: 2px solid var(--accent-gold) !important;
}
/* 19. COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.25rem;
    z-index: 99999;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.4;
}

.cookie-content a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.btn-accept {
    background: var(--text-main);
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-accept:hover {
    background: var(--accent-gold);
}

@media (min-width: 600px) {
    .cookie-banner {
        max-width: 500px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
}
