/* ========================================
   MobileOn - Main Stylesheet
   Version: 1.2
   Description: Unified styles for all pages
   ======================================== */

/* ========================================
   CSS VARIABLES (JEDYNE W CAŁYM PLIKU)
   ======================================== */
:root {
    /* Brand Colors */
    --primary-color: #1a3a52;
    --secondary-color: #64748b;
    --accent-color: #2dd4a3;
    --dark-color: #0f1e2e;
    --light-color: #f8fafc;
    
    /* Text Colors */
    --text-dark: #0f1e2e;
    --text-muted: #64748b;
    --text-light: #ffffff;
    
    /* Backgrounds */
    --bg-light: #f8fafc;
    --bg-dark: #0f1e2e;
    --bg-white: #ffffff;
    
    /* Borders & Shadows */
    --border-light: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

/* Container - wspólny dla wszystkich stron */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ========================================
   NAVIGATION - WSPÓLNY DLA WSZYSTKICH STRON
   ======================================== */
.navbar {
    background: var(--bg-white);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
}

.navbar-brand img {
    height: 45px;
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.navbar-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.navbar.scrolled .navbar-logo {
    height: 35px;
}

/* Nav Links */
.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
}

/* ========================================
   HERO SECTIONS
   ======================================== */

/* Hero - Home Page */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
    pointer-events: none; /*   w razie czego usunąć */ 
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section * {
    pointer-events: auto;
}   /* w razie czego usunąć */

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero - Services Page */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 10rem 2rem 6rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.8;
}

/* Hero - About Page (O nas) */
.hero-about {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        linear-gradient(30deg, transparent 40%, rgba(255,255,255,.1) 40%, rgba(255,255,255,.1) 60%, transparent 60%),
        linear-gradient(60deg, transparent 40%, rgba(255,255,255,.1) 40%, rgba(255,255,255,.1) 60%, transparent 60%);
    background-size: 100px 200px;
    background-position: 0 0, 50px 100px;
    pointer-events: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* ========================================
   STATISTICS COUNTERS (Home Page)
   ======================================== */
.stats-container {
    padding: 1rem;
}

.stat-card {
    background: rgba(45, 212, 163, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 212, 163, 0.3);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   KEY NUMBERS (About Page - O nas)
   ======================================== */
.key-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.number-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.number-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.number-label {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* ========================================
   SERVICE CARDS - HOME PAGE
   ======================================== */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.service-card .btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.service-card .btn-outline-primary:hover {
    background: var(--accent-color);
    color: white;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 58, 82, 0.15);
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.08);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    overflow: hidden;
    transition: var(--transition);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Service Icon Colors */
.icon-slr { background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%); }
.icon-smson { background: linear-gradient(135deg, #2dd4a3 0%, #1dd19f 100%); }
.icon-ekajet { background: linear-gradient(135deg, #f59e42 0%, #ff6b6b 100%); }
.icon-integracje { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.icon-reklama { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.icon-strony { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }

/* ========================================
   SERVICE CARDS - SERVICES PAGE
   ======================================== */
.services-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: #1a3a52;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.service-link:hover {
    color: #2dd4a3;
    transform: translateX(4px);
}

.service-link::after {
    content: "→";
    margin-left: 0.5rem;
    transition: margin-left 0.3s;
}

/* --- Breadcrumbs --- */
.breadcrumb-wrapper {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 0.75rem 0;
    margin-top: 0; /* przykleja się do hero */
}

.breadcrumb-wrapper .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.breadcrumb-wrapper .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-wrapper .breadcrumb-item a:hover {
    color: #1a3a52;
    text-decoration: underline;
}

.breadcrumb-wrapper .breadcrumb-item.active {
    color: #1a3a52;
    font-weight: 500;
}

.breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #adb5bd;
    padding: 0 0.5rem;
}
 
.breadcrumb-wrapper + .services-section {
    margin-top: 2.5rem;
}


/* --- Sekcja przewodnika "Nie wiesz, co wybrać?" --- */
.services-guide {
    background: linear-gradient(135deg, #f8fafb 0%, #eef4f8 100%);
    padding: 5rem 0;
    margin-top: 2rem;
}
 
.services-guide h2 {
    text-align: center;
    color: #1a3a52;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
 
.services-guide .guide-intro {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}
 
.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
 
.guide-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border-left: 4px solid #2dd4a3;
    box-shadow: 0 4px 20px rgba(26, 58, 82, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
 
.guide-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26, 58, 82, 0.12);
}
 
.guide-item h3 {
    color: #1a3a52;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}
 
.guide-item p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.98rem;
}
 
.guide-item p a {
    color: #1a3a52;
    text-decoration: none;
    border-bottom: 1px solid rgba(45, 212, 163, 0.4);
    transition: all 0.2s ease;
}
 
.guide-item p a:hover {
    color: #2dd4a3;
    border-bottom-color: #2dd4a3;
}
 
.guide-item p a strong {
    font-weight: 600;
}
 
/* ========================================
   INDUSTRY BADGES
   ======================================== */
.industry-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.badge-industry {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.badge-oze { background: #e8f5e9; color: #2e7d32; }
.badge-budownictwo { background: #fff3e0; color: #e65100; }
.badge-hvac { background: #e3f2fd; color: #1565c0; }
.badge-beauty { background: #fce4ec; color: #c2185b; }
.badge-fryzjer { background: #f3e5f5; color: #7b1fa2; }
.badge-barber { background: #e0f2f1; color: #00695c; }
.badge-ecommerce { background: #fff9c4; color: #f57f17; }
.badge-fintech { background: #e8eaf6; color: #3f51b5; }
.badge-marketing { background: #fbe9e7; color: #d84315; }
.badge-it { background: #e1f5fe; color: #0277bd; }
.badge-telco { background: #f1f8e9; color: #558b2f; }
.badge-retail { background: #ede7f6; color: #512da8; }

/* ========================================
   SECTIONS - WSPÓLNE
   ======================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-title.centered {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.about-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.about-section h3.text-primary {
    color: var(--primary-color);
}

.about-section .fa-award,
.about-section .fa-users,
.about-section .fa-handshake,
.about-section .fa-rocket {
    color: var(--accent-color);
}

/* ========================================
   ABOUT PAGE (O NAS) - SPECYFICZNE SEKCJE
   ======================================== */

/* Who We Are */
.who-we-are {
    background: var(--bg-white);
    padding: 5rem 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.text-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* By The Numbers */
.by-numbers {
    background: var(--bg-dark);
    padding: 5rem 0;
}

.by-numbers .section-title {
    color: var(--text-light);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.numbers-grid .stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: auto;
}

.numbers-grid .stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(45, 212, 163, 0.3);
}

.numbers-grid .stat-number {
    color: var(--accent-color);
    text-shadow: none;
}

.numbers-grid .stat-label {
    color: var(--text-light);
    text-transform: none;
}

/* Team Approach */
.team-approach {
    background: var(--bg-light);
    padding: 5rem 0;
}

.team-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem 0;
}

.team-column {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-column:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.column-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.team-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.team-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.team-list li:before {
    content: "•";
    color: var(--accent-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.team-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.benefit-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, #1dd19f 100%);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    box-shadow: 0 4px 12px rgba(45, 212, 163, 0.25);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Philosophy */
.philosophy {
    background: var(--bg-white);
    padding: 5rem 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 212, 163, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* How We Work */
.how-we-work {
    background: var(--bg-light);
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--accent-color);
    z-index: 0;
    opacity: 0.3;
}

.process-step {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    background: var(--bg-white);
    display: inline-block;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ========================================
   CTA SECTION - WSPÓLNA
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 5rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2,
.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* ========================================
   BUTTONS - WSPÓLNE
   ======================================== */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom {
    background: var(--accent-color);
    color: var(--dark-color);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom:hover {
    background: #1dd19f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 212, 163, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #1dd19f 100%);
    color: var(--dark-color);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 212, 163, 0.4);
    background: linear-gradient(135deg, #1dd19f 0%, #18b589 100%);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    border-color: var(--accent-color);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
#contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.contact-item-center {
    text-align: center;
}

/* ========================================
   FOOTER - WSPÓLNY DLA WSZYSTKICH STRON
   ======================================== */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

footer .navbar-brand span {
    color: var(--accent-color);
}

footer ul li a:hover {
    color: white !important;
    text-decoration: underline !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    footer .col-lg-3 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .key-numbers {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-columns {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px 0;
    }
    
    .hero-about {
        padding: 60px 0 40px;
    }
    
    .hero h1,
    .hero-title {
        font-size: 2rem;
    }

    .hero p,
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        height: 120px;
        padding: 1.5rem 0.5rem;
        border: 2px solid rgba(45, 212, 163, 0.4);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0 40px 0;
    }
    
    .hero-about {
        padding: 60px 0 40px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number,
    .number {
        font-size: 2rem;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .benefit-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .breadcrumb-wrapper {
        padding-top: 85px;
    }
    
    .services-guide {
        padding: 3rem 1rem;
    }
    
    .services-guide h2 {
        font-size: 1.75rem;
    }
    
    .services-guide .guide-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .guide-item {
        padding: 1.5rem;
    }
    
    .guide-item h3 {
        font-size: 1.1rem;
    }
}
 
@media (max-width: 480px) {
    .breadcrumb-wrapper .breadcrumb {
        font-size: 0.82rem;
    }
    
    .services-guide h2 {
        font-size: 1.5rem;
    }
}


/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-primary-custom {
    color: var(--primary-color);
}

.bg-primary-custom {
    background-color: var(--primary-color);
}

.bg-light-custom {
    background-color: var(--light-color);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}
/* ========================================
   NAVBAR & FOOTER - CUSTOM HTML STRUCTURE
   Dodane: 2025-10-14
   ======================================== */

/* NAVBAR - Struktura custom (nie Bootstrap) */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.btn-primary-small {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1.5rem !important;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-small:hover {
    background: #1dd19f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 212, 163, 0.3);
    color: var(--dark-color);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-wrapper {
        padding: 0 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }
    
    .nav-menu li a {
        display: block;
        width: 100%;
    }
}

/* ========================================
   FOOTER - CUSTOM HTML STRUCTURE
   ======================================== */
.footer {
    background: #2c3e50;
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    box-sizing: border-box;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-mobile {
    color: var(--text-light);
}

.footer-logo .logo-on {
    color: var(--accent-color);
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: var(--accent-color);
}

.footer-contact li {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ========================================
   SECTION PADDING CLASS
   ======================================== */
.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}

/* ========================================
   BACKGROUND UTILITIES
   ======================================== */
.bg-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.bg-dark .section-title {
    color: var(--text-light);
}

.bg-light {
    background: var(--bg-light);
}

/* ========================================
   FADE-IN ANIMATIONS
   ======================================== */
.fade-in,
.fade-in-delay,
.fade-in-delay-2,
.fade-in-delay-3,
.fade-in-delay-4 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-delay {
    animation-delay: 0.1s;
}

.fade-in-delay-2 {
    animation-delay: 0.2s;
}

.fade-in-delay-3 {
    animation-delay: 0.3s;
}

.fade-in-delay-4 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BOOTSTRAP NAVBAR OVERRIDE - UNIFIED STYLING
   Dodane: 2025-10-14 Final
   ======================================== */

/* Force consistent navbar styling across all pages */
.navbar.navbar-expand-lg {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    padding: 1rem 0 !important;
}

.navbar.navbar-expand-lg.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Logo */
.navbar-brand {
    padding: 0 !important;
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.navbar.scrolled .navbar-logo {
    height: 35px;
}

/* Nav Links */
.navbar-nav {
    gap: 1.5rem;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 0 !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
}

/* Kontakt Button */
.navbar-nav .btn-primary-small {
    background: var(--accent-color) !important;
    color: var(--dark-color) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    border-bottom: none !important;
}

.navbar-nav .btn-primary-small:hover {
    background: #1dd19f !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 212, 163, 0.3);
}

.navbar-nav .btn-primary-small.active {
    border-bottom: none !important;
}

/* Mobile Toggle */
.navbar-toggler {
    border: 2px solid var(--accent-color);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(45, 212, 163, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(45, 212, 163, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
        gap: 0;
    }
    
    .navbar-nav .nav-item {
        padding: 0.5rem 0;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
    }
    
    .navbar-nav .btn-primary-small {
        display: inline-block;
        margin-top: 0.5rem;
    }
}

/* Fix dla fixed-top navbar - hero padding */
.hero-about {
    padding-top: 140px !important;
}

@media (max-width: 768px) {
    .hero-about {
        padding-top: 100px !important;
    }
}

/* ========================================
   NAVBAR FIX - Kontakt button tylko na index.html
   ======================================== */

/* USUŃ button styling z "Kontakt" na pozostałych stronach */
.navbar-nav .nav-link.btn-primary-small {
    background: transparent !important;
    color: var(--text-dark) !important;
    padding: 0.5rem 0 !important;
    border-radius: 0 !important;
    font-weight: 500 !important;
    box-shadow: none !important;
}

.navbar-nav .nav-link.btn-primary-small:hover {
    color: var(--accent-color) !important;
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

.navbar-nav .nav-link.btn-primary-small.active {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--accent-color) !important;
}

/* Font-weight fix - wszystkie linki */
.navbar-nav .nav-link {
    font-weight: 500 !important;
}

/* ========================================
   CTA BUTTONS FIX - Poprawne kolory i styling
   ======================================== */

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* Primary Button (Turkusowy) */
.cta-buttons .btn-primary,
.cta-section .btn-primary {
    background: var(--accent-color) !important;
    color: var(--dark-color) !important;
    border: 2px solid var(--accent-color) !important;
    padding: 1rem 2.5rem !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    min-width: 280px;
    text-align: center;
}

.cta-buttons .btn-primary:hover,
.cta-section .btn-primary:hover {
    background: #1dd19f !important;
    border-color: #1dd19f !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 212, 163, 0.4) !important;
    color: var(--dark-color) !important;
}

/* Secondary Button (Outline biały) */
.cta-buttons .btn-secondary,
.cta-section .btn-secondary {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 1rem 2.5rem !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    min-width: 280px;
    text-align: center;
}

.cta-buttons .btn-secondary:hover,
.cta-section .btn-secondary:hover {
    background: white !important;
    color: var(--dark-color) !important;
    border-color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3) !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 400px;
    }
}
/* ========================================
   BY THE NUMBERS - 3 Large Cards
   ======================================== */

.numbers-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card-large {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(45, 212, 163, 0.2);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card-large:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(45, 212, 163, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 212, 163, 0.2);
}

.stat-number-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label-large {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .numbers-grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-card-large {
        padding: 2.5rem 2rem;
    }
    
    .stat-number-large {
        font-size: 3.5rem;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
   
/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1a3a52 0%, #0f1e2e 100%) !important;
    color: white;
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.contact-hero h1 {
    font-size: 2.5rem; /* Trochę mniejsze na mobile */
    font-weight: 700;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,...'); /* Ten sam pattern co hero-section */
    opacity: 0.3;
}
.contact-hero .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Contact Cards */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-card:hover .contact-icon {
    transform: rotate(5deg) scale(1.05);
}
.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a3a52, #2dd4a3) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

/* Booking Button */
.booking-button {
    background: #2dd4a3 !important;
    color: #0f1e2e !important; 
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(45, 212, 163, 0.3);
}

.booking-button:hover {
    color: #0f1e2e !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 212, 163, 0.4);
    background: #1dd19f !important;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px 0;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
}
.contact-methods {
    padding: 5rem 0;
    margin-top: 3rem;
}

.contact-methods.bg-light {
    background: var(--bg-light) !important;
}

/* Linki w contact-card - zielone zamiast niebieskich */
.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #1dd19f;
    text-decoration: none;
}

.contact-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
}

.contact-card .detail-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.phone-numbers a {
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact Image Section - większy margines */
.contact-image-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.contact-image-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-image-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-image-section .row {
    align-items: center; /* tylko wyśrodkowanie pionowe */
}

@media (min-width: 992px) {
    .contact-image-section .col-lg-6:first-child {
        padding-right: 3rem;
    }
}

@media (max-width: 991px) {
    .contact-image-section .col-lg-6 {
        margin-bottom: 2rem;
    }
    
    .contact-image-section .col-lg-6:last-child {
        margin-bottom: 0;
    }
}


.accent-text {
    color: var(--accent-color);
    font-weight: 600;
}

/* Work Style Section - szare tło */
.work-style-section {
    padding: 5rem 0;
}

.work-style-section.bg-light {
    background: var(--bg-light) !important;
}

.work-style-section .section-title {
    color: var(--text-dark);
    margin-top: 1.5rem;
}

.work-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

/* Responsive dla sekcji kontaktu */
@media (max-width: 768px) {
    .contact-methods {
        padding: 3rem 0;
    }
    
    .contact-image-section {
        padding: 3rem 0;
    }
    
    .contact-image-section h2 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .contact-image-section .col-lg-6:last-child {
        margin-top: 2rem;
    }
    
    .work-style-section {
        padding: 3rem 0;
    }
}

.contact-visual {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(26, 58, 82, 0.2);
    aspect-ratio: 16/9;
    background: #1a3a52;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}