/* ================================================
   FIZJOTERAPIA GOŁĄBEK - CLEAN MEDICAL DESIGN
   Light Theme with Soft Greens & Blues
   Professional, Readable, Calming
   ================================================ */

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

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
    /* Primary - Soft Teal/Green */
    --primary-900: #134e4a;
    --primary-800: #115e59;
    --primary-700: #0f766e;
    --primary-600: #0d9488;
    --primary-500: #14b8a6;
    --primary-400: #2dd4bf;
    --primary-300: #5eead4;
    --primary-200: #99f6e4;
    --primary-100: #ccfbf1;
    --primary-50: #f0fdfa;

    /* Secondary - Soft Blue */
    --secondary-900: #1e3a5f;
    --secondary-800: #1e40af;
    --secondary-700: #1d4ed8;
    --secondary-600: #2563eb;
    --secondary-500: #3b82f6;
    --secondary-400: #60a5fa;
    --secondary-300: #93c5fd;
    --secondary-200: #bfdbfe;
    --secondary-100: #dbeafe;
    --secondary-50: #eff6ff;

    /* Accent - Warm Green */
    --accent-600: #059669;
    --accent-500: #10b981;
    --accent-400: #34d399;
    --accent-100: #d1fae5;

    /* Neutral */
    --neutral-900: #111827;
    --neutral-800: #1f2937;
    --neutral-700: #374151;
    --neutral-600: #4b5563;
    --neutral-500: #6b7280;
    --neutral-400: #9ca3af;
    --neutral-300: #d1d5db;
    --neutral-200: #e5e7eb;
    --neutral-100: #f3f4f6;
    --neutral-50: #f9fafb;
    --white: #ffffff;

    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* WhatsApp */
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--neutral-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--neutral-900);
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

p {
    margin-bottom: var(--space-4);
}

p:last-child {
    margin-bottom: 0;
}

.text-primary {
    color: var(--primary-600);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--secondary-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== LAYOUT ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-narrow {
    max-width: 900px;
}

.section {
    padding: var(--space-16) 0;
}

.section-lg {
    padding: var(--space-20) 0;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-200);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    transition: all var(--transition-normal);
}

.logo:hover {
    opacity: 0.9;
}

.logo img {
    height: 48px;
    width: auto;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.logo:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
    transition: color var(--transition-normal);
}

.logo:hover .logo-text {
    color: var(--primary-600);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--neutral-600);
    padding: var(--space-2) 0;
    transition: color var(--transition-fast);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-500);
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-700);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--primary-600);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--neutral-700);
    border: 2px solid var(--neutral-200);
}

.btn-secondary:hover {
    border-color: var(--primary-500);
    color: var(--primary-600);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary-50) 0%, transparent 30%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--white);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--primary-700);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.hero h1 {
    font-size: var(--text-5xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    line-height: 1.15;
    color: var(--neutral-900);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--neutral-600);
    margin-bottom: var(--space-4);
    line-height: 1.8;
}

.hero-quote {
    font-style: italic;
    font-size: var(--text-base);
    color: var(--neutral-500);
    padding-left: var(--space-5);
    border-left: 3px solid var(--primary-400);
    margin-bottom: var(--space-8);
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

.hero-stats {
    display: flex;
    gap: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid var(--neutral-200);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary-600);
    display: block;
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: var(--neutral-500);
    margin-top: var(--space-1);
}

/* ========== PAGE HEADER ========== */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    opacity: 0.15;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--primary-50) 0%, rgba(240, 253, 250, 0.95) 100%);
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
}

.page-header p {
    color: var(--neutral-600);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-6);
    font-size: var(--text-sm);
}

.breadcrumb a {
    color: var(--neutral-500);
    transition: color var(--transition-fast);
}

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

.breadcrumb span {
    color: var(--neutral-400);
}

.breadcrumb-current {
    color: var(--neutral-700);
    font-weight: 500;
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    letter-spacing: 0.02em;
}

.section-title {
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
}

.section-subtitle {
    color: var(--neutral-600);
    font-size: var(--text-lg);
}

/* ========== GRID ========== */
.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

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

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ========== SERVICE CARDS ========== */
.service-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all var(--transition-normal);
}

.service-card:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-5);
    transition: all var(--transition-normal);
}

.service-card:hover .card-icon {
    background: var(--primary-500);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-600);
    transition: color var(--transition-normal);
}

.service-card:hover .card-icon svg {
    color: var(--white);
}

.card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    color: var(--neutral-900);
}

.card-text {
    color: var(--neutral-600);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* ========== TESTIMONIAL CARDS ========== */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #fbbf24;
}

.testimonial-content {
    font-size: var(--text-base);
    color: var(--neutral-700);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--secondary-400) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: var(--text-lg);
}

.testimonial-info h4 {
    font-size: var(--text-base);
    color: var(--neutral-900);
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: var(--text-sm);
    color: var(--neutral-500);
    margin: 0;
}

/* ========== ACCORDION ========== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.accordion-item:hover {
    border-color: var(--primary-300);
}

.accordion-item.active {
    border-color: var(--primary-400);
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    padding: var(--space-5) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.accordion-header:hover {
    background: var(--neutral-50);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.accordion-title h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
}

.accordion-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    background: var(--primary-500);
}

.accordion-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-600);
}

.accordion-item.active .accordion-icon svg {
    color: var(--white);
}

.accordion-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-100);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.accordion-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--neutral-500);
    transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-toggle {
    background: var(--primary-100);
}

.accordion-item.active .accordion-toggle svg {
    transform: rotate(180deg);
    color: var(--primary-600);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.accordion-body {
    padding: 0 var(--space-6) var(--space-6);
    padding-left: calc(var(--space-6) + 48px + var(--space-4));
}

.accordion-body p {
    color: var(--neutral-600);
    line-height: 1.8;
}

.accordion-body h4 {
    color: var(--primary-700);
    font-size: var(--text-base);
    margin-top: var(--space-6);
    margin-bottom: var(--space-4);
}

.accordion-body ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.accordion-body li {
    position: relative;
    padding-left: var(--space-5);
    color: var(--neutral-700);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.accordion-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-500);
    border-radius: 50%;
}

/* ========== ABOUT SECTION ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
}

.credentials-badge {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    background: var(--white);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.credentials-badge strong {
    display: block;
    font-size: var(--text-2xl);
    color: var(--primary-600);
}

.credentials-badge span {
    font-size: var(--text-sm);
    color: var(--neutral-600);
}

/* ========== PRICING ========== */
.pricing-table {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.pricing-category {
    border-bottom: 1px solid var(--neutral-200);
}

.pricing-category:last-child {
    border-bottom: none;
}

.pricing-category-header {
    background: var(--primary-50);
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--neutral-200);
}

.pricing-category-header h3 {
    font-size: var(--text-lg);
    color: var(--primary-700);
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--neutral-100);
    transition: background var(--transition-fast);
}

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

.pricing-item:hover {
    background: var(--neutral-50);
}

.pricing-item-name {
    font-weight: 500;
    color: var(--neutral-700);
}

.pricing-item-price {
    font-weight: 700;
    color: var(--primary-600);
    font-size: var(--text-lg);
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-soft);
}

.contact-info-card h3 {
    color: var(--neutral-900);
    margin-bottom: var(--space-6);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary-600);
}

.contact-info-content h4 {
    font-size: var(--text-base);
    color: var(--neutral-900);
    margin-bottom: 2px;
}

.contact-info-content p {
    color: var(--neutral-600);
    margin: 0;
    font-size: var(--text-sm);
}

.contact-info-content a {
    color: var(--primary-600);
    transition: color var(--transition-fast);
}

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

/* Opening Hours */
.opening-hours {
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
}

.opening-hours h3 {
    color: var(--neutral-900);
    margin-bottom: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-lg);
}

.opening-hours h3 svg {
    width: 22px;
    height: 22px;
    color: var(--primary-600);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: var(--space-2);
    border-bottom: 1px dashed var(--primary-200);
    font-size: var(--text-sm);
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-day {
    font-weight: 500;
    color: var(--neutral-700);
}

.hours-time {
    color: var(--primary-700);
    font-weight: 600;
}

.hours-closed {
    color: var(--neutral-400);
}

/* Map */
.map-wrapper {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-soft);
}

.map-wrapper iframe {
    width: 100%;
    height: 320px;
    border: none;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--secondary-600) 100%);
    padding: var(--space-16) 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background: var(--white);
    color: var(--primary-700);
    border-color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-400);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-10);
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: var(--space-4);
}

.footer-brand .logo img {
    height: 45px;
}

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

.footer-brand p {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--neutral-400);
}

.footer-heading {
    color: var(--white);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    color: var(--neutral-400);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-800);
    border-radius: var(--radius-lg);
    color: var(--neutral-400);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-600);
    color: var(--white);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--neutral-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
}

.footer-bottom a {
    color: var(--neutral-400);
    transition: color var(--transition-fast);
}

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

/* ========== FLOATING BUTTONS (Desktop) ========== */
.floating-buttons {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.floating-btn.whatsapp {
    background: var(--whatsapp);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.floating-btn.whatsapp:hover {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.floating-btn.znanylekarz {
    background: linear-gradient(135deg, #00b8a9 0%, #0097a7 100%);
    box-shadow: 0 4px 20px rgba(0, 151, 167, 0.4);
}

.floating-btn.znanylekarz:hover {
    box-shadow: 0 6px 25px rgba(0, 151, 167, 0.5);
}

/* Old single whatsapp-float for compatibility */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-normal);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

/* ========== FLOATING SOCIAL BAR (Mobile) ========== */
.social-float-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: var(--space-3) var(--space-4);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--neutral-200);
}

.social-float-bar .social-bar-inner {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    max-width: 400px;
    margin: 0 auto;
}

.social-float-bar .social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-xl);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-float-bar .social-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-float-bar .social-btn.whatsapp {
    background: var(--whatsapp);
}

.social-float-bar .social-btn.facebook {
    background: #1877F2;
}

.social-float-bar .social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-float-bar .social-btn.znanylekarz {
    background: linear-gradient(135deg, #00b8a9 0%, #0097a7 100%);
}

.social-float-bar .social-btn:active {
    transform: scale(0.95);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .hero-background {
        width: 100%;
        opacity: 0.3;
    }

    .hero-background::before {
        background: linear-gradient(180deg, var(--primary-50) 30%, transparent 100%);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-6);
        gap: var(--space-4);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        border-bottom: 1px solid var(--neutral-200);
        box-shadow: var(--shadow-lg);
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 var(--space-16);
    }

    .hero h1 {
        font-size: var(--text-3xl);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-4);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: var(--space-12) 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: var(--text-3xl);
    }

    .accordion-body {
        padding-left: var(--space-6);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }

    h1 {
        font-size: var(--text-2xl);
    }

    h2 {
        font-size: var(--text-xl);
    }

    .hero {
        padding: 100px 0 var(--space-12);
    }

    .hero-background {
        opacity: 0.2;
    }

    .hero-background::before {
        background: linear-gradient(180deg, rgba(240, 253, 250, 0.9) 0%, rgba(240, 253, 250, 0.7) 100%);
    }

    .hero h1 {
        font-size: var(--text-2xl);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .hero-quote {
        font-size: var(--text-sm);
    }

    .hero-stat-number {
        font-size: var(--text-xl);
    }

    .hero-badge {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-3);
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: var(--text-2xl);
    }

    .page-header p {
        font-size: var(--text-base);
    }

    .section-lg {
        padding: var(--space-10) 0;
    }

    .section-header {
        margin-bottom: var(--space-8);
    }

    .section-title {
        font-size: var(--text-xl);
    }

    .section-subtitle {
        font-size: var(--text-base);
    }

    .service-card {
        padding: var(--space-5);
    }

    .testimonial-card {
        padding: var(--space-5);
    }

    .cta-section {
        padding: var(--space-10) 0;
    }

    .cta-content h2 {
        font-size: var(--text-xl);
    }

    .cta-content p {
        font-size: var(--text-base);
    }

    .btn-lg {
        padding: var(--space-3) var(--space-5);
        font-size: var(--text-sm);
    }

    /* Hide floating buttons on mobile */
    .whatsapp-float,
    .floating-buttons {
        display: none;
    }

    /* Show social bar on mobile */
    .social-float-bar {
        display: block;
    }

    /* Add padding to footer for social bar */
    .footer {
        padding-bottom: 80px;
    }

    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: var(--text-base);
    }

    .about-image-wrapper {
        max-height: 400px;
        overflow: hidden;
    }

    .about-image-wrapper img {
        object-position: center 10%;
    }

    .accordion-header {
        padding: var(--space-4);
    }

    .accordion-title h3 {
        font-size: var(--text-base);
    }

    .accordion-icon {
        width: 40px;
        height: 40px;
    }

    .accordion-icon svg {
        width: 20px;
        height: 20px;
    }
}