/* ==============================
   STUDIO BODY FIT - STYLESHEET
   Color Palette: Black & Gold
   ============================== */

:root {
    /* Colors */
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --soft-black: #2a2a2a;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941e;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --gray-light: #e0e0e0;
    --gray: #888888;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;
}

/* ==============================
   RESET & BASE STYLES
   ============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-black);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==============================
   TYPOGRAPHY
   ============================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

.gold-text {
    color: var(--gold);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* ==============================
   BUTTONS
   ============================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-black);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.btn-contact {
    background: var(--gold);
    color: var(--primary-black);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-contact:hover {
    background: var(--gold-light);
}

/* ==============================
   NAVIGATION
   ============================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-img {
    max-height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--off-white);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:not(.btn-contact):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-contact):hover:after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==============================
   HERO SECTION
   ============================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 90% 20%;
    transform: scale(1.03);
    transform-origin: center;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    display: none;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 40px 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================
   SECTIONS
   ============================== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section:nth-child(even) {
    background: var(--secondary-black);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* ==============================
   DIETETYK SECTION
   ============================== */
.dietetyk-section {
    background: var(--secondary-black);
}

/* ==============================
   PARTNERS SECTION
   ============================== */
.partners-section {
    background: var(--secondary-black);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.partner-card {
    background: var(--soft-black);
    border-radius: 15px;
    overflow: hidden;
    padding: 0 0 30px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s ease;
}

.partner-card > *:not(.partner-slider) {
    padding-left: 28px;
    padding-right: 28px;
}

.partner-card > .dietetyk-badge {
    padding-top: 24px;
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

/* ---- Partner Slider ---- */
.partner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 2px solid rgba(212, 175, 55, 0.15);
    flex-shrink: 0;
}

.partner-slides {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.partner-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-black);
}

.partner-slide--empty::before {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.25;
}

.partner-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
    z-index: 2;
    padding: 0;
}

.partner-slider__btn:hover {
    background: rgba(212, 175, 55, 0.25);
}

.partner-slider__btn:disabled {
    opacity: 0.2;
    cursor: default;
}

.partner-slider__prev { left: 10px; }
.partner-slider__next { right: 10px; }

.partner-slider__dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.partner-slider__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.partner-slider__dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.partner-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin: 0;
    font-family: var(--font-display);
}

.partner-desc {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

.partner-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 10px 14px;
}

.partner-contact a {
    color: var(--gold-light);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.partner-contact a:hover {
    text-decoration: underline;
}

.dietetyk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: start;
}

.dietetyk-card {
    background: var(--soft-black);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.dietetyk-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.dietetyk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--primary-black);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    font-weight: 600;
    margin-bottom: 15px;
}

.dietetyk-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.dietetyk-meta__item {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 12px 14px;
}

.dietetyk-meta__item span {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.dietetyk-phone {
    color: var(--gold-light);
    font-weight: 600;
}

.dietetyk-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.dietetyk-pill {
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--off-white);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
}

.dietetyk-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.dietetyk-info-grid h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.dietetyk-card p {
    color: var(--gray-light);
    margin-bottom: 10px;
}

.dietetyk-card a {
    color: var(--gold-light);
    text-decoration: underline;
}

.dietetyk-list {
    margin-top: 15px;
    padding-left: 18px;
    color: var(--off-white);
}

.dietetyk-list li {
    margin-bottom: 8px;
}

.dietetyk-effects {
    background: var(--soft-black);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.dietetyk-effects__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
}

.dietetyk-effects__header h4 {
    color: var(--gold);
    font-size: 1.3rem;
}

.dietetyk-note {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.dietetyk-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 15px;
}

.dietetyk-photo {
    background: var(--primary-black);
    border-radius: 12px;
    border: 1px dashed rgba(212, 175, 55, 0.4);
    min-height: 140px;
    background-size: cover;
    background-position: center;
}

.dietetyk-stats {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.dietetyk-stats div {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 12px 14px;
}

.dietetyk-stats strong {
    display: block;
    color: var(--off-white);
    margin-bottom: 4px;
}

.dietetyk-stats span {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.dietetyk-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.dietetyk-photo--1 {
    background-image: url("diet1.jpg");
}

.dietetyk-photo--2 {
    background-image: url("diet2.jpg");
}

.dietetyk-photo--3 {
    background-image: url("diet3.jpg");
}

.dietetyk-photo--4 {
    background-image: url("diet4.jpg");
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==============================
   ABOUT SECTION
   ============================== */
.about-content {
    display: grid;
    gap: 50px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--soft-black);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--gray-light);
    line-height: 1.6;
}

/* ==============================
   SERVICES SECTION
   ============================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--soft-black);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.service-image {
    position: relative;
    height: 250px;
    background: var(--secondary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Service video overlay for hover playback */
.service-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.limfo-card .service-video {
    object-position: center 85%;
}

.elektro-card .service-video {
    object-position: center 70%;
}

.rolka-card:hover .service-video {
    opacity: 1;
}

.rolka-card:hover .service-overlay {
    opacity: 0;
}

.limfo-card:hover .service-video {
    opacity: 1;
}

.limfo-card:hover .service-overlay {
    opacity: 0;
}

.elektro-card:hover .service-video {
    opacity: 1;
}

.elektro-card:hover .service-overlay {
    opacity: 0;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.25));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    display: none;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-content p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* Service images mapping (replace with your actual files) */
.service-img-lpg {
    background-image: url('https://source.unsplash.com/1600x900/?body,contouring,clinic');
}

.service-img-masaz {
    background-image: url('masaz.jpg');
    background-size: cover;
    background-position: center;
}

.service-img-twarz {
    background-image: url('https://source.unsplash.com/1600x900/?facial,skincare,spa');
}

.service-img-modelowanie {
    background-image: url('https://source.unsplash.com/1600x900/?body,sculpt,fitness,wellness');
}

.service-img-relaks {
    background-image: url('https://source.unsplash.com/1600x900/?relaxation,spa,zen');
}

.service-img-cialo {
    background-image: url('https://source.unsplash.com/1600x900/?skincare,body,spa');
}

/* Local image for Body wrapping card */
.service-img-wrapping {
    background-image: url('wrapping.png');
    background-size: 125%;
    background-position: center center;
}

/* Local image for Elektrostymulacja card */
.service-img-stymulacja {
    background-image: url('stymulacja.png');
    background-size: 115%;
    background-position: center -70px;
}

/* Local image for Limfodrenaż card */
.service-img-limfo {
    background-image: url('limfo.png');
    background-size: 115%;
    background-position: center -30px;
}

/* Local image for Rollmasaż card */
.service-img-rolka {
    background-image: url('rolka.png');
    background-size: cover;
    background-position: center;
}

/* Local image for Vacu card */
.service-img-vacu {
    background-color: #0a0a0a;
}

.service-img-vacu::after,
.service-img-oczyszczanie::after {
    content: 'Zdjęcia wkrótce';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    font-family: var(--font-body);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
}

/* Local image for Fala Uderzeniowa card */
.service-img-fala {
    background-image: url('fala.jpg');
    background-size: cover;
    background-position: center;
}

/* Service img for Oczyszczanie wodorowe */
.service-img-oczyszczanie {
    background-color: #0a0a0a;
}

/* Services page 2 divider */
.services-page-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 60px 0 40px;
}

.services-page-divider .section-divider {
    flex: 1;
    margin: 0;
}

.services-page-label {
    font-family: var(--font-display);
    font-size: 1.6rem;
    white-space: nowrap;
    color: var(--white);
    margin: 0;
}

/* ==============================
   OFFERS SECTION
   ============================== */
.offers-section {
    background: var(--primary-black);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--soft-black);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1;
}

.offer-image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--secondary-black), var(--soft-black));
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-icon {
    font-size: 5rem;
    filter: grayscale(1) brightness(1.3);
}

.offer-body {
    padding: 30px;
    text-align: center;
}

.offer-body h3 {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.offer-body .price {
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.offer-body .description {
    color: var(--gray-light);
    font-size: 1rem;
}

/* ==============================
   REVIEWS SECTION
   ============================== */
.reviews-section {
    background: var(--secondary-black);
}

.google-reviews-summary {
    background: var(--soft-black);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.google-logo {
    max-width: 100px;
}

.rating-summary {
    flex: 1;
    text-align: center;
}

.stars {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.rating-text {
    color: var(--gray-light);
    font-size: 1rem;
}

.google-reviews-link {
    background: var(--gold);
    color: var(--primary-black);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.google-reviews-link:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--soft-black);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.review-stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.review-text {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ==============================
   CONTACT SECTION
   ============================== */
.contact-section {
    background: var(--primary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--soft-black);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    font-size: 2rem;
    min-width: 40px;
}

.contact-item h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: var(--gold-light);
    text-decoration: underline;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-map {
    height: 500px;
    background: var(--soft-black);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

/* (Booksy styles removed) */

/* ==============================
   SOCIAL MEDIA SECTION
   ============================== */
.social-section {
    background: var(--primary-black);
}

.social-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.instagram-embed-wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.instagram-embed-wrapper iframe {
    display: block;
    border-radius: 15px;
}

.follow-cta {
    text-align: center;
    padding: 40px;
    background: var(--soft-black);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.follow-cta p {
    color: var(--gray-light);
    margin-bottom: 30px;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
    position: relative;
    background: url("footer.jpg") center/cover no-repeat;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    padding: 50px 0 20px;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.9));
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-logo p {
    color: var(--off-white);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--off-white);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--off-white);
    margin-bottom: 15px;
}

.social-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: underline;
    margin-top: 10px;
}

.social-link:hover {
    color: var(--gold-light);
}

.social-link:hover {
    color: var(--gold-light);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--soft-black);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.4rem; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 0;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .logo-img {
        max-height: 45px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .offers-grid,
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 350px;
        margin-top: 30px;
    }
    
    .contact-map iframe {
        height: 350px;
    }
    
    .reviews-header {
        flex-direction: column;
        text-align: center;
    }

    .social-content {
        grid-template-columns: 1fr;
    }

    .instagram-embed-wrapper {
        max-height: 500px;
    }

    .offer-banner-img {
        max-width: 95% !important;
    }

    /* Mobile-specific image positioning for service cards */
    .service-img-wrapping {
        background-size: 120% !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    .service-img-stymulacja {
        background-size: 130% !important;
        background-position: center bottom !important;
        background-repeat: no-repeat !important;
    }
    .service-img-limfo {
        background-size: 125% !important;
        background-position: center -60px !important;
        background-repeat: no-repeat !important;
    }

    /* About section mobile spacing fixes */
    .about-section .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .about-features h3 {
        margin-left: 0 !important;
        padding-left: 8px;
    }
    .feature-list {
        padding-left: 22px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    /* Extra-small about spacing */
    .about-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .feature-list {
        padding-left: 24px;
    }
    /* Extra-small devices: stronger image adjustments */
    .service-img-wrapping {
        background-size: 125% !important;
        background-position: center center !important;
    }
    .service-img-stymulacja {
        background-size: 140% !important;
        background-position: center bottom !important;
    }
    .service-img-limfo {
        background-size: 130% !important;
        background-position: center -70px !important;
    }
}

/* ==============================
   ANIMATIONS & TRANSITIONS
   ============================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth hover effects */
.service-card,
.offer-card,
.review-card,
.feature-card,
.contact-item {
    will-change: transform;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s infinite;
}

/* ==============================
   MODERNIST / SHARP OVERRIDES
   Flattened UI, no rounded corners, minimal motion
   ============================== */

/* Global tone tweaks */
.navbar {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
}

/* Buttons: square, flat, crisp */
.btn {
    border-radius: 0;
    letter-spacing: 0.8px;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-black);
    border: 1px solid var(--gold);
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--primary-black);
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: none;
}

.btn-contact {
    background: var(--gold);
    color: var(--primary-black);
    border-radius: 0;
    border: 1px solid var(--gold);
}

.btn-contact:hover {
    background: var(--gold-light);
}

/* Cards and blocks: squared, flat, subtle borders */
.feature-card,
.service-card,
.offer-card,
.review-card,
.contact-item,
.google-reviews-summary,
.follow-cta,
.contact-map,
.instagram-embed-wrapper,
.instagram-embed-wrapper iframe,
.footer,
.social-icons a {
    border-radius: 0;
    box-shadow: none;
}

.offer-badge {
    border-radius: 0;
}

/* Hover behavior: keep it crisp, no jumps */
.service-card:hover,
.offer-card:hover,
.feature-card:hover,
.review-card:hover,
.contact-item:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--gold);
}

/* Section divider: thinner, sharper line */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* (Floating Booksy button overrides removed) */

/* Social icons: circles -> squares */
.social-icons a {
    border-radius: 0;
}

/* ==============================
   NAV CENTERING OVERRIDES
   Center nav options in header on desktop only
   ============================== */
@media (min-width: 769px) {
    .navbar .container {
        position: relative;
    }
    .nav-menu {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}
