/* ============================================
   ŚWIĘTOKRZYSKA30 STYLE - EXACT COPY
   ============================================ */

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

:root {
    --primary-dark: #1a1a1a;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #888888;
    --bg-white: #ffffff;
    --bg-light: #f5f5f5;
    --border-light: #e5e5e5;
    --accent-green: #4a7c59;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-green);
}

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

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

/* ============================================
   HEADER - Exact match to reference
   ============================================ */
.header {
    background-color: var(--bg-white);
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.header-logo-image {
    height: 125px;
    width: auto;
    max-width: 100%;
    vertical-align: bottom;
    object-fit: contain;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -15px;
    line-height: 1;
}

.logo a {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 2px;
    text-transform: none;
    line-height: 1.2;
    display: inline-block;
    background: unset;
    background-color: unset;
    background-image: none;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 2px;
    white-space: normal;
    max-width: 100%;
}

.logo-tagline {
    font-size: 14px;
    color: var(--text-gray);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Navigation */
.main-nav {
    padding-top: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li:not(:last-child)::after {
    content: '•';
    color: var(--text-light);
    padding: 0 15px;
    font-size: 8px;
    vertical-align: middle;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-green);
}

.nav-link.active {
    color: var(--accent-green);
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-green);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* ============================================
   PAGE CONTENT AREAS
   ============================================ */
.page-content {
    padding: 0;
}

.page-title {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-dark);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* ============================================
   HOME PAGE - Hero Section
   ============================================ */
.hero-section {
    padding: 0;
    background-color: var(--bg-white);
}

.hero-content {
    max-width: 800px;
    text-align: left;
}

.hero-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-dark);
    margin-bottom: 0;
    letter-spacing: 1px;
    line-height: 1;
    text-align: left;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-gray);
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1;
    text-align: left;
}

.hero-section-divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent-green);
    margin: 40px 0;
}

/* Hero Cards */
.hero-cards {
    padding: 30px 0;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hero-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    height: 350px;
    text-decoration: none;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.hero-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 30px;
    padding-bottom: 80px;
    transition: background 0.3s ease;
}

.hero-card:hover .hero-card-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.hero-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.2;
    min-height: 90px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-card-link {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: none;
    transition: all 0.3s ease;
}

.hero-card:hover .hero-card-link {
    background-color: #ffffff;
    color: var(--primary-dark);
}

@media (max-width: 900px) {
    .hero-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-card {
        height: 300px;
    }
    
    .hero-card-title {
        font-size: 28px;
    }
}

/* CTA Section on Home */
.cta-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.cta-title {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-green);
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3d6a4a;
    color: var(--bg-white);
}

/* Location Info */
.location-info {
    padding: 5px 0;
    background-color: var(--bg-white);
}

.location-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 100%;
    text-align: left;
}

.location-text p {
    margin-bottom: 15px;
}

.location-text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    padding: 20px 0;
}

.content-section.alt-bg {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-dark);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-text p {
    margin-bottom: 20px;
}

/* Pracownia Hero Section */
.pracownia-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.pracownia-hero-image img {
    width: 100%;
    height: auto;
    min-height: 350px;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pracownia-hero-text .lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Mission Box */
.mission-box {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f5e9 100%);
    border-left: 4px solid var(--accent-green);
    padding: 25px 30px;
    margin: 30px 0 40px;
    border-radius: 0 8px 8px 0;
}

.mission-box p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* ============================================
   THERAPY SECTION HEADER
   ============================================ */
.therapy-section-header {
    padding: 60px 0 40px;
    background: var(--bg-white);
}

.therapy-header-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
}

.therapy-header-line {
    flex: 1;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.therapy-header-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 1px;
    flex-shrink: 0;
}

/* ============================================
   OFFER BLOCKS - Clean Minimal Style
   ============================================ */
.offer-block {
    padding: 70px 0;
    background: var(--bg-white);
    position: relative;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.offer-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-light) 50%, transparent 100%);
    opacity: 0.5;
}

.offer-block::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 3%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.offer-block.in-view::after {
    transform: translateY(-10px);
}

.offer-block-alt {
    background: linear-gradient(135deg, #f9faf9 0%, #f5f7f5 50%, #f9faf9 100%);
    position: relative;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.offer-block-alt::before {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 3%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.offer-block-alt.in-view::before {
    transform: translateY(10px);
}

.offer-block-alt::after {
    content: '';
    position: absolute;
    top: 60px;
    right: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.offer-block-alt.in-view::after {
    transform: translateY(-15px);
}

.offer-block-accent {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 50%, #e8f5e9 100%);
    border-top: 2px solid rgba(74, 124, 89, 0.15);
    border-bottom: 2px solid rgba(74, 124, 89, 0.15);
    border-left: 3px solid rgba(74, 124, 89, 0.2);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.offer-block-accent::before {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.offer-block-accent.in-view::before {
    transform: translateY(12px);
}

.offer-block-accent::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.offer-block-accent.in-view::after {
    transform: translateY(-55%);
}

.offer-block-dark {
    background: linear-gradient(135deg, #1a2f23 0%, #243d2e 100%);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
    border-left: 3px solid rgba(144, 207, 160, 0.3);
    transition: border-color 0.3s ease;
}

.offer-block-dark::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 4%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(144, 207, 160, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.offer-block-dark.in-view::before {
    transform: translateY(-12px);
}

.offer-block-dark::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: 6%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(144, 207, 160, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.offer-block-dark.in-view::after {
    transform: translateY(15px);
}

/* Active section highlighting */
.offer-block.in-view {
    border-left-color: var(--accent-green);
}

.offer-block-alt.in-view {
    border-left-color: var(--accent-green);
}

.offer-block-accent.in-view {
    border-left-color: rgba(74, 124, 89, 0.5);
}

.offer-block-dark.in-view {
    border-left-color: rgba(144, 207, 160, 0.7);
}

/* Fade-in animation for sections */
.offer-block-split {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.offer-block.in-view .offer-block-split {
    opacity: 1;
    transform: translateY(0);
}

.offer-block-alt.in-view .offer-block-split {
    opacity: 1;
    transform: translateY(0);
}

.offer-block-accent.in-view .offer-block-split {
    opacity: 1;
    transform: translateY(0);
}

.offer-block-dark.in-view .offer-block-split {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure immediate visibility on page load for first section */
.offer-block:first-of-type .offer-block-split {
    opacity: 1;
    transform: translateY(0);
}

.offer-block-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.offer-block-title em {
    font-style: italic;
    position: relative;
    display: inline-block;
}

.offer-block-title::after {
    content: '';
    display: block;
    width: 72px;
    height: 2px;
    background: var(--accent-green);
    margin: 18px auto 0;
    opacity: 0.85;
    position: relative;
}

.offer-block-dark .offer-block-title {
    color: var(--bg-white);
}

.offer-block-dark .offer-block-title::after {
    background: #90cfa0;
    opacity: 0.9;
}

.offer-block-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
}

.offer-block-dark .offer-block-content {
    color: rgba(255, 255, 255, 0.85);
}

.offer-block-content p {
    margin-bottom: 20px;
}

/* Split layout (photo integrated with long text, calm editorial look) */
.offer-block-split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 50px;
    align-items: start;
}

.offer-block-split .offer-block-copy,
.offer-block-split .offer-block-photo {
    grid-row: 1;
}

.offer-block-split.reverse {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.offer-block-split.reverse .offer-block-copy {
    grid-column: 2;
}

.offer-block-split.reverse .offer-block-photo {
    grid-column: 1;
}

.offer-block-split .offer-block-content {
    max-width: none;
    margin: 0;
}

.offer-block-copy .offer-block-title {
    text-align: left;
    margin-bottom: 25px;
}

.offer-block-copy .offer-block-title::after {
    margin-left: 0;
    margin-right: auto;
}

.offer-block-photo {
    position: relative;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--bg-light);
    align-self: start;
}

.offer-block-photo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-green) 0%, transparent 40%, transparent 60%, var(--accent-green) 100%);
    opacity: 0;
    border-radius: 14px;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.offer-block-photo:hover::before {
    opacity: 0.15;
}

.offer-block-photo img {
    width: 100%;
    height: auto;
    min-height: 450px;
    max-height: 600px;
    object-fit: cover;
    display: block;
    transform: scale(1.001);
    transition: transform 0.5s ease;
}

.offer-block-photo:hover img {
    transform: scale(1.03);
}

.offer-block-photo.dark {
    position: relative;
    border-color: rgba(255, 255, 255, 0.12);
}

.offer-block-photo.dark img {
    filter: brightness(0.8) contrast(1.05);
}

.offer-block-photo.dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 47, 35, 0.08) 0%, rgba(26, 47, 35, 0.55) 100%);
    pointer-events: none;
}

/* Section-specific sizing */
.therapy-split .offer-block-photo img {
    min-height: 500px;
    max-height: 650px;
}

.coaching-split .offer-block-photo img {
    min-height: 520px;
    max-height: 680px;
}

.offer-block-content .lead-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.offer-block-highlight {
    font-size: 17px;
    color: var(--accent-green);
    font-style: italic;
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
    position: relative;
}

.offer-block-highlight::before {
    content: '✦';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    padding: 0 10px;
    color: var(--accent-green);
    font-size: 14px;
}

.offer-block-alt .offer-block-highlight::before {
    background: #f9faf9;
}

.offer-block-accent .offer-block-highlight::before {
    background: #e8f5e9;
}

.offer-block-dark .offer-block-highlight {
    color: #90cfa0;
    border-color: rgba(255, 255, 255, 0.15);
}

.offer-block-dark .offer-block-highlight::before {
    background: #1a2f23;
    color: #90cfa0;
}

.offer-block-info {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.08) 0%, rgba(74, 124, 89, 0.05) 100%);
    padding: 20px 25px;
    border-left: 3px solid var(--accent-green);
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
    font-size: 15px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.offer-block-dark .offer-block-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: #90cfa0;
}

.offer-block-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.offer-block-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 15px;
}

.offer-block-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-size: 18px;
    line-height: 1.5;
    transform: scale(1);
    transition: transform 0.2s ease;
}

.offer-block-content ul li:hover::before {
    transform: scale(1.3);
}

.offer-block-dark .offer-block-content ul li::before {
    color: #90cfa0;
}

/* Therapy Cards */
.therapy-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.therapy-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.therapy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-green) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.therapy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.therapy-card:hover::before {
    opacity: 1;
}

.therapy-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.therapy-card-duration {
    display: inline-block;
    font-size: 12px;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.therapy-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.therapy-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.therapy-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.therapy-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

/* Coaching Boxes */
.coaching-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 35px 0;
}

.coaching-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coaching-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(144, 207, 160, 0.3) 0%, transparent 100%);
    border-radius: 8px 8px 0 0;
}

.coaching-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.coaching-box-accent {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.25) 0%, rgba(74, 124, 89, 0.15) 100%);
    border-color: rgba(74, 124, 89, 0.3);
}

.coaching-box-accent::before {
    background: linear-gradient(90deg, rgba(144, 207, 160, 0.5) 0%, transparent 100%);
}

.coaching-box h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.coaching-box ul {
    margin: 0;
}

.coaching-box ul li {
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.coaching-box ul li::before {
    color: #90cfa0;
}

/* (legacy) coaching-quote removed from HTML */

/* Offer Navigation */
.offer-nav {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.offer-nav .section-title {
    margin-bottom: 0;
}

.offer-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}

.offer-nav-links a {
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.offer-nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 1px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.offer-nav-links a:hover {
    color: var(--accent-green);
}

.offer-nav-links a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .therapy-section-header {
        padding: 40px 0 30px;
    }
    
    .therapy-header-content {
        gap: 20px;
    }
    
    .therapy-header-title {
        font-size: 28px;
    }
    
    .offer-block {
        padding: 50px 0;
    }
    
    .offer-block-title {
        font-size: 26px;
    }
    
    .therapy-cards,
    .coaching-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .therapy-card {
        padding: 25px;
    }

    .offer-block-split,
    .offer-block-split.reverse {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .offer-block-split .offer-block-copy,
    .offer-block-split .offer-block-photo {
        grid-row: auto;
    }

    .offer-block-split.reverse .offer-block-copy,
    .offer-block-split.reverse .offer-block-photo {
        grid-column: auto;
    }

    .offer-block-copy .offer-block-title {
        text-align: center;
    }

    .offer-block-photo {
        position: relative;
        top: auto;
    }

    .offer-block-photo img,
    .therapy-split .offer-block-photo img,
    .coaching-split .offer-block-photo img {
        min-height: 280px;
        max-height: 350px;
    }
    
    .offer-nav-links {
        gap: 8px 15px;
    }
    
    .offer-nav-links a {
        font-size: 13px;
    }
}


/* Legacy offer title for compatibility */
.offer-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-green);
    display: inline-block;
}


/* Info & Highlight Boxes */
.info-box {
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 15px;
}

.highlight-text {
    font-size: 17px;
    color: var(--accent-green);
    font-weight: 500;
    font-style: italic;
}

.quote-text {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-green) 0%, #3d6b4a 100%);
    color: white;
    text-align: center;
    padding: 50px 40px;
    border-radius: 12px;
    margin-top: 50px;
}

.cta-section h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

.cta-section .btn-primary {
    background: white;
    color: var(--accent-green);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

/* Offer Lists */
.offer-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.offer-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-dark);
}

.offer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .pracownia-hero {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.image-placeholder {
    background-color: var(--bg-light);
    border: 1px dashed var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    min-height: 250px;
    margin: 30px 0;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 10px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-item .image-placeholder {
    margin: 0;
    min-height: 200px;
}

/* ============================================
   OFFICE/GABINET LISTINGS
   ============================================ */
.office-listing {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-light);
}

.office-listing:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.office-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.office-details {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.office-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.office-features {
    list-style: none;
    margin: 20px 0;
}

.office-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

.office-features li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

/* Room Navigation Grid */
.room-nav-section {
    margin-bottom: 40px;
    margin-top: 20px;
}

.room-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

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

.room-nav-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    aspect-ratio: 4/3;
}

.room-nav-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-nav-item:hover img {
    transform: scale(1.05);
}

.room-nav-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
}

.room-nav-item:hover span {
    background: rgba(74, 124, 89, 0.9);
}

@media (max-width: 992px) {
    .room-nav-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .room-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .room-nav-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .room-nav-grid,
    .room-nav-grid-4 {
        grid-template-columns: 1fr;
    }
}

.office-image {
    margin: 30px 0;
}

.office-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
}

.office-images-grid {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.office-images-grid img {
    max-width: 600px;
    width: calc(50% - 10px);
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .office-images-grid {
        flex-direction: column;
    }
    
    .office-images-grid img {
        width: 100%;
        max-width: 600px;
    }
}

/* ============================================
   PRICING / CENNIK
   ============================================ */
.pricing-table {
    margin: 40px 0;
}

.pricing-item {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.pricing-name {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.pricing-value {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.pricing-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.pricing-features {
    list-style: none;
    margin-top: 15px;
}

.pricing-features li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: var(--text-dark);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 20px 0;
    align-items: start;
}

.pricing-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-card-header {
    background-color: var(--bg-light);
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.pricing-card-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 3px;
}

.pricing-card-subtitle {
    font-size: 13px;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.pricing-card-body {
    padding: 15px 20px;
}

.pricing-card-body-centered {
    text-align: center;
    padding: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-light);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span:first-child {
    font-size: 14px;
    color: var(--text-dark);
}

.price-row .price {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-green);
}

.pricing-card-footer {
    padding: 12px 20px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.pricing-card-footer p {
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
    margin: 0;
}

.price-highlight {
    margin: 15px 0;
}

.price-big {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-green);
}

.price-unit {
    font-size: 16px;
    color: var(--text-gray);
}

.price-note {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.price-list {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.price-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 13px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

.pricing-info {
    background-color: var(--bg-light);
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.pricing-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.pricing-info ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
    margin: 0;
    padding: 0;
}

.pricing-info li {
    font-size: 13px;
    color: var(--text-dark);
    padding-left: 18px;
    position: relative;
}

.pricing-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

/* ============================================
   TEAM / ZESPÓŁ
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-light);
    background: var(--bg-light);
}

.team-photo .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    margin: 0;
    border-radius: 50%;
    border: none;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Team Photo Wrapper for Contact Arc */
.team-photo-wrapper {
    position: relative;
    width: 180px;
    margin: 0 auto 35px;
    padding-bottom: 30px;
}

/* Contact Arc */
.contact-arc {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 40px;
    cursor: pointer;
    z-index: 5;
}

.contact-arc-svg {
    width: 100%;
    height: 100%;
}

.contact-arc-text {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    fill: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: fill 0.3s ease;
}

.contact-arc:hover .contact-arc-text {
    fill: var(--primary-dark);
}

/* Contact Popup */
.contact-popup {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    border: 1px solid var(--accent-green);
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 20;
    min-width: 280px;
    max-width: 350px;
    display: none;
    overflow: hidden;
    white-space: nowrap;
}

.contact-popup.active {
    display: block;
}

.contact-popup::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--accent-green);
}

.contact-popup::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--bg-white);
}

.contact-popup-header {
    background-color: var(--accent-green);
    color: white;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-popup-body {
    padding: 12px 15px;
}

.contact-popup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
    text-align: left;
    white-space: nowrap;
}

.contact-popup-item:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

.contact-popup-icon {
    width: 32px;
    height: 32px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-green);
    font-size: 14px;
}

.contact-popup-item a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-popup-item a:hover {
    color: var(--accent-green);
}

.contact-popup-close {
    background: none;
    border: none;
    font-size: 18px;
    color: white;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contact-popup-close:hover {
    opacity: 1;
}

.contact-popup-empty {
    padding: 15px;
    text-align: center;
    color: var(--text-gray);
    font-size: 13px;
}

.team-name {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-title {
    font-size: 14px;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.team-photo {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 124, 89, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-photo:hover .team-photo-overlay {
    opacity: 1;
}

.team-photo-overlay span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Team Modal */
.team-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 20px;
}

.team-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-modal-content {
    background: var(--bg-white);
    max-width: 900px;
    width: 100%;
    border-radius: 8px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.team-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-gray);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.team-modal-close:hover {
    color: var(--primary-dark);
}

.team-modal-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 40px;
}

.team-modal-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border-light);
    margin: 0 auto;
}

.team-modal-photo .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    margin: 0;
    border-radius: 50%;
    border: none;
}

.team-modal-info h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-modal-title {
    font-size: 14px;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.team-modal-bio {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

.team-modal-bio p {
    margin-bottom: 15px;
}

.team-modal-bio h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 20px 0 10px;
}

.team-modal-bio ul {
    margin: 10px 0 15px 20px;
}

.team-modal-bio li {
    margin-bottom: 5px;
}

.team-modal-contact {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.team-modal-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

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

.team-modal-contact .contact-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border-light);
}

.team-modal-contact .contact-list li:last-child {
    border-bottom: none;
}

.team-modal-contact .contact-label {
    font-weight: 600;
    color: var(--text-gray);
    min-width: 80px;
    margin-right: 10px;
}

.team-modal-contact a {
    color: var(--accent-green);
    font-weight: 500;
}

.team-modal-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .team-modal-body {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .team-modal-photo {
        width: 150px;
        height: 150px;
    }
    
    .team-modal-photo .image-placeholder {
        min-height: 150px;
    }
}

/* ============================================
   CONTACT / KONTAKT
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0;
}

/* Maps Grid */
.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.map-container {
    width: 100%;
}

.map-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 15px;
    text-align: center;
}

@media (max-width: 768px) {
    .maps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.contact-info-section h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.contact-detail {
    margin-bottom: 25px;
}

.contact-detail h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-detail p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--accent-green);
}

.contact-detail a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--accent-green);
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #3d6a4a;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 50px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-green);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: #3d6a4a;
    color: var(--bg-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent-green);
    margin: 10px 0;
}

/* ============================================
   SCROLL PROGRESS INDICATOR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(74, 124, 89, 0.1);
    z-index: 999;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green) 0%, #90cfa0 100%);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(74, 124, 89, 0.5);
}

/* ============================================
   SECTION NAVIGATION INDICATOR
   ============================================ */
.section-nav-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-nav-indicator.visible {
    opacity: 1;
}

.section-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    border: 2px solid var(--bg-white);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section-nav-dot:hover {
    background: var(--accent-green);
    transform: scale(1.3);
}

.section-nav-dot.active {
    background: var(--accent-green);
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.2);
}

.section-nav-dot::before {
    content: attr(data-label);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-dark);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.section-nav-dot:hover::before {
    opacity: 1;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .section-nav-indicator {
        display: none;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .logo-wrapper {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .logo {
        align-items: flex-start;
        text-align: left;
        margin-top: 0;
    }

    .header-logo-image {
        height: 60px;
        flex-shrink: 0;
    }

    .logo a {
        font-size: 18px;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .logo-tagline {
        font-size: 9px;
        letter-spacing: 2px;
        margin-top: 2px;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        right: 0;
        top: 0;
    }

    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
        padding-top: 20px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-menu li::after {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .page-title {
        font-size: 26px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

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

    .header-logo-image {
        height: 50px;
    }

    .logo a {
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .logo-tagline {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .page-content {
        padding: 40px 0;
    }
}

/* Extra small devices (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .header-logo-image {
        height: 45px;
    }

    .logo a {
        font-size: 14px;
        letter-spacing: 0.3px;
    }

    .logo-tagline {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .logo-wrapper {
        gap: 8px;
    }
}

/* ===================================
   Events Grid Styles
   =================================== */

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding: 20px 0;
}

.event-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f5f5f5;
    transition: transform 0.3s ease;
}

.event-item:hover .event-image img {
    transform: scale(1.02);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(76, 132, 91, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-item:hover .event-overlay {
    opacity: 1;
}

.event-overlay-text {
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-title {
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-dark);
    text-align: center;
    margin: 0;
}

/* ===================================
   Event Modal Styles
   =================================== */

.event-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.event-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.event-modal-content {
    background-color: white;
    margin: 20px;
    padding: 0;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.event-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.event-modal-close:hover,
.event-modal-close:focus {
    background: rgba(0, 0, 0, 0.8);
}

.event-modal-body {
    padding: 0;
}

.event-modal-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.event-modal-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    padding: 30px 40px 20px;
}

.event-modal-description {
    padding: 0 40px 40px;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
}

.event-modal-description p {
    margin-bottom: 15px;
}

.event-modal-description h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.event-modal-description ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.event-modal-description li {
    margin-bottom: 8px;
}

/* ===================================
   Responsive - Events Grid
   =================================== */

@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .event-modal-content {
        width: 95%;
        margin: 10px;
    }

    .event-modal-title {
        font-size: 24px;
        padding: 25px 30px 15px;
    }

    .event-modal-description {
        padding: 0 30px 30px;
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-image {
        height: 350px;
    }

    .event-modal-image {
        max-height: 250px;
    }

    .event-modal-title {
        font-size: 22px;
        padding: 20px 25px 15px;
    }

    .event-modal-description {
        padding: 0 25px 25px;
        font-size: 14px;
    }

    .event-modal-close {
        right: 15px;
        top: 15px;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }
}

