/* --- Zmienne --- */
:root {
    --primary-blue: #0056b3;      /* Główny granat medyczny */
    --accent-cyan: #00bfa5;       /* Turkus (akcent) */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #F4F7FA;          /* Bardzo jasny błękit tła */
    
    /* Gradient: Granat -> Turkus */
    --main-gradient: linear-gradient(135deg, #0056b3 0%, #00bfa5 100%);
    
    --shadow-card: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 15px 40px rgba(0, 86, 179, 0.15);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif; /* Tekst główny */
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Nagłówki Montserrat */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Nawigacja --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
    font-size: 0.95rem; font-weight: 500; color: var(--text-dark);
    transition: var(--transition); text-transform: uppercase;
}
.nav-links a:hover { color: var(--accent-cyan); }

.btn-nav {
    background: var(--main-gradient);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 191, 165, 0.3);
}
.btn-nav:hover { transform: translateY(-2px); }

.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--text-dark); }

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(assets/gab1.jpg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    background-size: cover;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient nakładki: Granatowy z przezroczystością */
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.85), rgba(0, 191, 165, 0.7));
}

.hero-content { position: relative; z-index: 2; color: white; max-width: 800px; padding: 0 20px; }

.hero-content h1 { font-size: 3rem; margin-bottom: 1.5rem; line-height: 1.2; }
.hero-content p { font-size: 1.2rem; margin-bottom: 2.5rem; opacity: 0.95; }

.badge-consultation {
    background: #ffc107; color: #333; padding: 5px 15px;
    border-radius: 20px; font-weight: 700; text-transform: uppercase;
    font-size: 0.9rem; display: inline-block; margin-bottom: 20px;
}

.hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn { padding: 0.8rem 2rem; border-radius: 50px; font-weight: 600; transition: var(--transition); display: inline-block; }

.btn-gradient { background: white; color: var(--primary-blue); }
.btn-gradient:hover { background: #f0f0f0; transform: translateY(-3px); }
.btn-outline { border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--primary-blue); }

/* --- O Mnie (Split) --- */
.split-section { padding: 6rem 0; background-color: var(--white); }
.split-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.section-title { font-size: 2.2rem; color: var(--primary-blue); margin-bottom: 0.5rem; text-align: center; }
.left-align { text-align: left; }
.highlight { color: var(--accent-cyan); }

.divider-gradient {
    height: 4px; width: 80px; background: var(--main-gradient);
    margin: 0 0 2rem 0; border-radius: 2px;
}

.features-row { display: flex; gap: 2rem; margin-top: 2rem; }
.feature-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.feature-item i { font-size: 2rem; color: var(--accent-cyan); }
.feature-item span { font-weight: 600; font-size: 0.9rem; }

.split-image { position: relative; height: 450px; }
.split-image img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(0, 191, 165, 0.2);
}
.image-badge {
    position: absolute; bottom: -20px; left: -20px; background: var(--white);
    padding: 1rem 2rem; border-radius: 15px; box-shadow: var(--shadow-card);
    display: flex; align-items: center; gap: 10px; color: var(--primary-blue); font-weight: 700;
}

/* --- Usługi (Karty) --- */
.services-section { padding: 6rem 0; background-color: var(--bg-light); }
.section-subtitle { text-align: center; margin-bottom: 4rem; color: var(--text-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }

.service-card {
    background: white; padding: 2.5rem; border-radius: 20px;
    box-shadow: var(--shadow-card); transition: var(--transition);
    border-bottom: 4px solid transparent; text-align: center;
}
.service-card:hover {
    transform: translateY(-10px); box-shadow: var(--shadow-hover);
    border-bottom-color: var(--accent-cyan);
}
.icon-box {
    width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; background: rgba(0, 86, 179, 0.1); color: var(--primary-blue);
    transition: var(--transition);
}
.service-card:hover .icon-box { background: var(--main-gradient); color: white; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }

/* --- Cennik --- */
.pricing-section { padding: 6rem 0; background: var(--white); }
.pricing-box {
    background: white; border-radius: 20px; box-shadow: var(--shadow-card);
    overflow: hidden; max-width: 900px; margin: 0 auto; border: 1px solid #eee;
}
.pricing-header {
    background: var(--primary-blue); color: white; padding: 1.5rem;
    text-align: center; font-size: 1.1rem; display: flex;
    align-items: center; justify-content: center; gap: 10px;
}
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table td { padding: 15px 25px; border-bottom: 1px solid #f0f0f0; }
.category-row td {
    background: #f9fbfd; color: var(--primary-blue); font-weight: 700;
    text-align: center; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px;
}
.price { font-weight: 700; color: var(--text-dark); text-align: right; }

/* --- Kontakt --- */
.contact-section { padding: 6rem 0; background: var(--bg-light); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.intro-text { margin-bottom: 2rem; }

.info-item { display: flex; align-items: center; gap: 20px; margin-bottom: 2rem; }
.icon-circle {
    width: 50px; height: 50px; background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-blue); font-size: 1.2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.info-item:hover .icon-circle { background: var(--primary-blue); color: white; }
.contact-link { font-weight: 600; color: var(--primary-blue); }

.map-container iframe {
    width: 100%; height: 400px; border: 0; border-radius: 20px;
    box-shadow: var(--shadow-card);
}

/* Footer */
footer { background: var(--primary-blue); color: white; padding: 2rem 0; text-align: center; }
.footer-logo { font-size: 1.5rem; font-weight: 700; font-family: 'Montserrat'; margin-bottom: 10px; }

/* Animacje */
.hidden { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.show { opacity: 1; transform: translateY(0); }

/* Mobile */
@media (max-width: 992px) {
    .nav-links {
        position: absolute; top: 70px; right: 0; height: 100vh; width: 100%;
        background: white; flex-direction: column; align-items: center; justify-content: center;
        transform: translateX(100%); transition: 0.3s;
    }
    .nav-links.active { transform: translateX(0); }
    .hamburger { display: block; }
    .split-container, .contact-wrapper { grid-template-columns: 1fr; }
    .split-image { order: -1; height: 300px; }
    .hero-content h1 { font-size: 2rem; }
}
