/**
 * BİLİM TIP MERKEZİ - Ana Stil Dosyası
 * =====================================
 */

/* ===== CSS VARIABLES ===== */
:root {
    /* Ana Renkler */
    --primary: #0066CC;
    --primary-dark: #004C99;
    --primary-light: #3399FF;

    --secondary: #00A86B;
    --secondary-dark: #008055;
    --secondary-light: #33CC99;

    --accent: #FF6B35;
    --accent-dark: #E55A2B;
    --accent-light: #FF8C5A;

    /* Nötr Renkler */
    --dark: #1A1A2E;
    --gray-dark: #4A4A4A;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --light: #F8F9FA;
    --white: #FFFFFF;

    /* Durum Renkleri */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* Kategori Renkleri */
    --color-women: #E91E63;
    --color-children: #2196F3;
    --color-radiology: #9C27B0;
    --color-pregnancy: #4CAF50;

    /* Gradientler */
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #00A86B 100%);
    --gradient-hero: linear-gradient(135deg, #1A1A2E 0%, #0066CC 100%);
    --gradient-cta: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);

    /* Gölgeler */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transition */
    --transition-fast: 150ms ease;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;

    /* Font Family */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

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

a:hover {
    color: var(--primary-dark);
}

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

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .top-info {
    color: rgba(255,255,255,0.9);
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
}

.top-bar .top-info .list-inline-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 0 !important;
    padding: 0 12px;
    border-right: 1px solid rgba(255,255,255,0.3);
    font-size: 13px;
}

.top-bar .top-info .list-inline-item:first-child {
    padding-left: 0;
}

.top-bar .top-info .list-inline-item:last-child {
    border-right: none;
    padding-right: 0;
}

.top-bar .top-info .list-inline-item i {
    margin-right: 6px;
    font-size: 12px;
}

.top-bar .top-info a {
    color: rgba(255,255,255,0.9);
}

.top-bar .top-info a:hover {
    color: var(--white);
}

.top-bar .social-links a {
    color: rgba(255,255,255,0.7);
    margin-left: 12px;
    font-size: 15px;
}

.top-bar .social-links a:hover {
    color: var(--white);
}

/* ===== HEADER ===== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-brand .logo-img {
    height: 50px;
    width: auto;
}

.navbar-brand .logo-text {
    display: flex;
    flex-direction: column;
}

/* Text Only Logo */
.navbar-brand .logo-text-only {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.navbar-brand .logo-text-only .brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1.2;
    text-decoration: none;
}

.navbar-brand .logo-text-only .brand-slogan {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 400;
    text-decoration: none;
}

.navbar-brand .brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary);
    line-height: 1.2;
}

.navbar-brand .brand-slogan {
    font-size: 0.75rem;
    color: var(--gray);
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark);
    padding: 10px 16px !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--dark);
}

.dropdown-item:hover {
    background-color: var(--light);
    color: var(--primary);
}

.dropdown-item i {
    width: 20px;
    color: var(--primary);
}

/* ===== RANDEVU BUTONU ===== */
.btn-appointment {
    background: var(--gradient-cta);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    border: none;
    animation: pulse 2s infinite;
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
    }
}

/* ===== MARQUEE ===== */
.marquee-container {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    gap: 4rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee span {
    font-weight: 500;
    font-size: 14px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section .col-lg-9 {
    padding-right: 10px;
}

.hero-section .col-lg-3 {
    padding-left: 10px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-slider .swiper-slide {
    height: 500px;
}

.hero-slider .slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

/* Slider Gradient Backgrounds */
.slide-gradient-1 {
    background: linear-gradient(135deg, #1A1A2E 0%, #0066CC 50%, #00A86B 100%);
}

.slide-gradient-2 {
    background: linear-gradient(135deg, #004C99 0%, #0066CC 50%, #3399FF 100%);
}

.slide-gradient-3 {
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 50%, #673AB7 100%);
}

.slide-gradient-4 {
    background: linear-gradient(135deg, #00A86B 0%, #4CAF50 50%, #8BC34A 100%);
}

.hero-slider .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,102,204,0.6) 100%);
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.hero-slider .slide-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-slider .slide-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-slide {
    background: var(--gradient-cta);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    border: none;
}

.btn-slide:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    color: var(--white);
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
    font-size: 20px;
}

/* ===== SECTION HEADERS ===== */
.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-image {
    width: 100%;
    height: 150px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card.has-image {
    padding-top: 0;
}

.service-card.has-image .service-image {
    margin: -2rem -2rem 1.5rem -2rem;
    width: calc(100% + 4rem);
    height: 180px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-service {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-service:hover {
    color: var(--primary-dark);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--light);
}

.about-content {
    padding-right: 2rem;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.about-list li {
    padding: 8px 0;
    color: var(--gray-dark);
}

.about-list li i {
    color: var(--secondary);
    margin-right: 10px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-text {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* ===== DOCTORS SECTION ===== */
.doctors-section {
    background: var(--light);
}

.doctor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.doctor-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,102,204,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.doctor-card:hover .doctor-overlay {
    opacity: 1;
}

.doctor-info {
    padding: 1.5rem;
    text-align: center;
}

.doctor-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.doctor-info .specialty {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.doctorsSwiper .swiper-slide {
    padding: 10px;
}

.doctors-pagination {
    margin-top: 20px;
}

/* ===== BLOG CARDS ===== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.blog-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.blog-meta i {
    margin-right: 4px;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--dark);
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.blog-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ===== PHARMACY WIDGET ===== */
.pharmacy-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pharmacy-header {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    color: var(--white);
    padding: 1.25rem;
    text-align: center;
}

.pharmacy-header img {
    width: 40px;
    margin-bottom: 8px;
    animation: bounce 1s infinite;
}

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

.pharmacy-header h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.pharmacy-header .date {
    font-size: 0.85rem;
    opacity: 0.9;
}

.pharmacy-body {
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.pharmacy-card {
    padding: 1rem;
    border: 2px dashed #DC2626;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.pharmacy-card:last-child {
    margin-bottom: 0;
}

.pharmacy-card h4 {
    color: #DC2626;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pharmacy-card-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pharmacy-widget-hero .pharmacy-card-icon {
    width: 16px;
    height: 16px;
}

.pharmacy-card p {
    color: var(--gray-dark);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.pharmacy-card p i {
    width: 18px;
    color: #DC2626;
}

.pharmacy-phone {
    color: var(--gray-dark);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.pharmacy-phone:hover {
    color: #DC2626;
    text-decoration: underline;
}

.pharmacy-directions {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 6px 12px;
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}

.pharmacy-directions:hover {
    background: linear-gradient(135deg, #B91C1C 0%, #DC2626 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.pharmacy-directions i {
    margin-right: 4px;
}

.pharmacy-footer {
    padding: 1rem;
    background: var(--light);
}

.btn-pharmacy {
    width: 100%;
    background: #DC2626;
    color: var(--white);
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    display: block;
}

.btn-pharmacy:hover {
    background: #B91C1C;
    color: var(--white);
}

/* Pharmacy Widget Hero Yanı */
.pharmacy-widget-hero {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
}

.pharmacy-widget-hero .pharmacy-header {
    padding: 1rem;
}

.pharmacy-widget-hero .pharmacy-header img {
    width: 35px;
    margin-bottom: 5px;
}

.pharmacy-widget-hero .pharmacy-header h3 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.pharmacy-widget-hero .pharmacy-header .date {
    font-size: 0.8rem;
}

.pharmacy-widget-hero .pharmacy-body {
    flex: 1;
    padding: 0.75rem;
    max-height: none;
    overflow-y: auto;
}

.pharmacy-widget-hero .pharmacy-card {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.pharmacy-widget-hero .pharmacy-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.pharmacy-widget-hero .pharmacy-card p {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.pharmacy-widget-hero .pharmacy-footer {
    padding: 0.75rem;
}

.pharmacy-widget-hero .btn-pharmacy {
    padding: 10px;
    font-size: 0.9rem;
}

/* Mobile Pharmacy Section */
.mobile-pharmacy-section {
    background: var(--light);
}

.mobile-pharmacy-section .pharmacy-widget {
    border-radius: var(--radius-lg);
}

/* ===== KATEGORI DETAY ===== */
.category-detail-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.category-detail-text h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.category-detail-text h4 {
    color: var(--dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.category-detail-text ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.category-detail-text ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.category-detail-text p {
    line-height: 1.8;
    color: var(--gray-dark);
}

/* ===== CTA WIDGET ===== */
.cta-widget {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.cta-widget i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-widget h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-widget p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.btn-cta:hover {
    background: var(--light);
    color: var(--primary-dark);
}

/* ===== CONTACT CTA ===== */
.contact-cta-section {
    background: var(--gradient-primary);
}

.cta-box {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--white);
}

.cta-box h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.cta-box p {
    opacity: 0.9;
}

/* ===== MAP SECTION ===== */
.map-section iframe {
    display: block;
    filter: grayscale(20%);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

/* Footer Text Logo */
.footer-logo-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo-text .footer-brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.footer-logo-text .footer-brand-slogan {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.footer-logo-text:hover .footer-brand-name {
    color: var(--accent);
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer .social-icons {
    display: flex;
    gap: 10px;
}

.footer .social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer .social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.widget-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a i {
    margin-right: 8px;
    font-size: 10px;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
}

.footer-contact a:hover {
    color: var(--white);
}

.btn-appointment-footer {
    background: var(--gradient-cta);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.btn-appointment-footer:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.25rem 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-light);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ===== MOBILE APPOINTMENT BAR ===== */
.mobile-appointment-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-cta);
    padding: 12px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.mobile-appointment-bar a {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== FLOAT BUTTONS ===== */
/* Telefon Butonu (Sağ Alt) */
.phone-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0066CC 0%, #0052a3 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-phone 2s infinite;
}

.phone-float:hover {
    transform: scale(1.1);
    color: var(--white);
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
}

@keyframes pulse-phone {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(0, 102, 204, 0); }
}

/* Yol Tarifi Butonu (Sol Alt) */
.directions-float {
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00A86B 0%, #008055 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.directions-float:hover {
    transform: scale(1.1);
    color: var(--white);
    background: linear-gradient(135deg, #008055 0%, #006644 100%);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 165px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background: var(--light);
    padding: 1rem 0;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--gray);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

/* ===== FORMS ===== */
.form-control {
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

/* ===== BUTTONS ===== */
.btn {
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 12px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ===== ALERTS ===== */
.alert {
    border: none;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}

/* ===== UTILITIES ===== */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-light { background-color: var(--light) !important; }

/* ===== LOADING SPINNER ===== */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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