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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background: #3399ff;
    color: white;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-top {
    background: white;
    padding: 8px 0;
    font-size: 14px;
    color: #1a1a1a;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-contact a {
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-contact a:hover {
    color: #3399ff;
}

.nav-main {
    background: #1e3a8a;
    padding: 15px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.nav-link {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
}

.nav-link:hover,
.nav-link.active {
    color: #b3d9ff;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e3a8a;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 10px 0;
    display: none;
    z-index: 1001;
}

.nav-dropdown-menu li {
    display: block;
}

.nav-dropdown-menu .nav-link {
    display: block;
    padding: 10px 20px;
    border-radius: 0;
}

.nav-dropdown-menu .nav-link:hover {
    background: rgba(255,255,255,0.1);
}

/* Main Layout */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    max-width: 1200px;
    margin: 10px auto 0;
    padding: 0 20px;
}

.main-content {
    background: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3399ff 0%, #1e3a8a 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff8c42;
}

.hero .date {
    font-size: 24px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1f2e;
    border-bottom: 3px solid #3399ff;
    padding-bottom: 10px;
}

.content-section h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #1e3a8a;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

/* Program Day */
.program-day {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #3399ff;
}

.program-day h4 {
    color: #1e3a8a;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Price Box */
.price-box {
    background: linear-gradient(135deg, #ff8c42 0%, #ff7328 100%);
    color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
    margin-bottom: 40px;
}

.price-header {
    background: rgba(0,0,0,0.1);
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.price-header h2 {
    color: white;
    margin: 0;
    font-size: 24px;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.price-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-amount {
    text-align: center;
}

.price-value {
    font-size: 48px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.price-note {
    font-size: 16px;
    opacity: 0.9;
    display: block;
    margin-top: 5px;
}

.price-details p {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.95;
}

.price-features h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: white;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.95;
}

.price-features .fas.fa-check {
    color: #90EE90;
    font-size: 12px;
}

.price-cta {
    background: rgba(0,0,0,0.1);
    padding: 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    gap: 15px;
    justify-content: center;
}

.price-button {
    background: white;
    color: #ff8c42;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.price-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.price-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.price-button.secondary:hover {
    background: white;
    color: #ff8c42;
}

/* Price Includes */
.price-includes {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.price-icon {
    width: 40px;
    height: 40px;
    background: #3399ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.price-text {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* Contract Button */
.contract-button {
    text-align: center;
    margin: 25px 0 40px;
}

.btn-contract {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1e3a8a;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-contract:hover {
    background-color: #2563eb;
}

/* CTA Section */
.cta-section {
    background: #3399ff;
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 40px;
}

.cta-section h2 {
    color: #ff8c42;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

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

.cta-button {
    background: #ff8c42;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    margin: 0 10px;
}

.cta-button:hover {
    background: #ff7328;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #3399ff;
}

/* Sidebar */
.sidebar, #sidebar {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 124px;
    height: fit-content;
    margin-top: 144px;
}

.sidebar h3 {
    color: #3399ff;
    margin-bottom: 20px;
    font-size: 20px;
}

.sidebar-pilgrimage {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-pilgrimage:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.sidebar-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.sidebar-content h4 a {
    color: #1e3a8a;
    font-weight: 600;
}

.sidebar-content h4 a:hover {
    color: #3399ff;
}

.sidebar-date {
    font-size: 12px;
    color: #3399ff;
    font-weight: 600;
    margin-bottom: 5px;
}

.sidebar-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.sidebar-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.sidebar-contact h4 {
    color: #1e3a8a;
    margin-bottom: 15px;
}

.sidebar-phones {
    margin-bottom: 15px;
}

.sidebar-phones a {
    display: block;
    color: #3399ff;
    font-weight: 600;
    margin-bottom: 5px;
}

.sidebar-contact p {
    font-size: 14px;
    margin: 0;
}

.sidebar-contact a {
    color: #3399ff;
}

/* Footer */
footer {
    background: #1e3a8a;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #ff8c42;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #b3d9ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Floating call button */
.floating-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #3399ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(51, 153, 255, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-call-btn:hover {
    background: #1e3a8a;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(51, 153, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(51, 153, 255, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(51, 153, 255, 0.4);
    }
}

@media (min-width: 769px) {
    .floating-call-btn {
        display: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 94px;
        flex-direction: column;
        background: #1e3a8a;
        width: 100%;
        padding: 20px;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .main-layout {
        grid-template-columns: 1fr;
        margin-top: 120px;
    }
    
    .sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero .date {
        font-size: 18px;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .price-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .price-value {
        font-size: 36px;
    }
    
    .price-cta {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .price-button {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .nav-contact {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }
    
    .nav-contact a:nth-child(2),
    .nav-contact a:nth-child(3) {
        display: none;
    }
}

/* === Styles for O-NAS page === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #3399ff;
    color: white;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-content {
    padding: 60px 0;
    margin-top: 94px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.content-text h2 {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3399ff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 14px;
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 40px;
    color: #3399ff;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive for O-NAS page */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}


/* Fix for hero section after fixed header */
.header + .hero {
    margin-top: 94px;
    padding-top: 80px;
}

/* Ensure hero on o-nas page has proper spacing */
body > .header + .hero {
    margin-top: 94px;
    padding-top: 80px;
}

/* Features Section for O-NAS */
.features-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 48px;
    color: #3399ff;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: white;
}

/* Responsive for features */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
}


/* ========================================
   STYLES FOR INDEX.HTML (HOME PAGE)
   ======================================== */

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #1a1a1a;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* Navigation */
        .navbar {
            background: #3399ff;
            color: white;
            padding: 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .nav-top {
            background: white;
            padding: 8px 0;
            font-size: 14px;
            color: #1a1a1a;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-contact {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .nav-contact a {
            color: #1a1a1a;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .nav-contact a:hover {
            color: #3399ff;
        }
        
        .nav-main {
            background: #1e3a8a;
            padding: 15px 0;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }
        
        .nav-logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 10px;
        }
        
        .nav-link:hover {
            color: #b3d9ff;
        }
        
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Dropdown Menu */
        .nav-dropdown {
            position: relative;
        }
        
        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #1e3a8a;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border-radius: 5px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }
        
        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .nav-dropdown-menu li {
            display: block;
        }
        
        .nav-dropdown-menu .nav-link {
            display: block;
            padding: 10px 20px;
            border-radius: 0;
            white-space: nowrap;
        }
        
        .nav-dropdown-menu .nav-link:hover {
            background: rgba(255,255,255,0.1);
        }
        
        /* Hero Section - PRZYWRÓCONY UKŁAD - TYLKO DLA INDEX.HTML */
        .home-hero .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: 500px;
        }
        
        .hero-content {
            padding-right: 40px;
        }
        
        .home-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #1a1f2e;
            line-height: 1.2;
        }
        
        .hero-benefits {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .hero-benefits li {
            font-size: 18px;
            color: #1a1f2e;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            line-height: 1.4;
        }
        
        .hero-benefits li::before {
            content: "✓";
            color: #27ae60;
            font-weight: bold;
            margin-right: 12px;
            font-size: 20px;
        }
        
        .home-hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #7f8c8d;
            line-height: 1.6;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .hero-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #7f8c8d;
        }
        
        .rating-stars {
            font-size: 16px;
        }
        
        .rating-text strong {
            color: #1a1f2e;
        }
        
        .hero-credentials {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .credentials-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #7f8c8d;
            background: #f8f9fa;
            padding: 8px 12px;
            border-radius: 20px;
            border: 1px solid #e9ecef;
        }
        
        .credentials-item i {
            color: #3399ff;
            font-size: 16px;
        }
        
        .btn {
            padding: 15px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            border: 2px solid transparent;
            text-decoration: none;
            font-size: 16px;
        }
        
        .btn-primary {
            background: #3399ff;
            color: white;
        }
        
        .btn-primary:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(51, 153, 255, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: #3399ff;
            border-color: #3399ff;
        }
        
        .btn-secondary:hover {
            background: #3399ff;
            color: white;
            transform: translateY(-2px);
        }
        
        .hero-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .hero-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }
        
        /* Destinations Section */
        .destinations {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 15px;
            color: #1a1f2e;
        }
        
        .section-subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 50px;
            font-size: 16px;
        }
        
        .destination-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .destination-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .destination-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .card-image {
            height: 200px;
            background: #e9ecef;
            position: relative;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .date-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(255,255,255,0.95);
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 600;
            color: #1a1f2e;
        }
        
        .premium-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ff8c42;
            color: white;
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .card-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #1a1f2e;
        }
        
        .card-content p {
            color: #7f8c8d;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .btn-outline {
            background: transparent;
            color: #3498db;
            border: 2px solid #3498db;
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
            text-align: center;
            display: inline-block;
        }
        
        .btn-outline:hover {
            background: #3498db;
            color: white;
            transform: translateY(-2px);
        }
        
        .card-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        
        .tag {
            background: #e9ecef;
            color: #495057;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 12px;
        }
        
        /* CTA Section */
        .cta {
            background: #3399ff;
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .cta p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta .btn-primary {
            background: #ff8c42;
            color: white;
        }
        
        .cta .btn-primary:hover {
            background: #ff7328;
        }
        
        /* Footer */
        footer {
            background: #1e3a8a;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }
        
        .footer-section h3 {
            margin-bottom: 15px;
            color: #ff8c42;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            margin-bottom: 8px;
        }
        
        .footer-section a {
            color: rgba(255,255,255,0.8);
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #b3d9ff;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        
        /* Sekcja "Co Mówią Nasi Pielgrzymi" */
        .testimonials-section {
            padding: 80px 20px;
            background-color: #ffffff;
            text-align: center;
        }

        .testimonials-section h2 {
            font-size: 48px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
        }

        .testimonials-section .subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            font-family: 'Inter', sans-serif;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            align-items: start;
        }

        .testimonial-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .stars {
            font-size: 24px;
            margin-bottom: 20px;
            color: #ffd700;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 25px;
            font-style: italic;
            font-family: 'Inter', sans-serif;
        }

        .testimonial-author {
            font-size: 14px;
            color: #3399ff;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
        }

        /* Sekcja FAQ */
        .faq-section {
            padding: 80px 20px;
            background-color: #f8f9fa;
            text-align: center;
        }

        .faq-section h2 {
            font-size: 48px;
            font-weight: 700;
            color: #3399ff;
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
        }

        .faq-section .subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            font-family: 'Inter', sans-serif;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            border: 3px solid;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:nth-child(1) { border-color: #90EE90; background-color: #f0fff0; }
        .faq-item:nth-child(2) { border-color: #ADD8E6; background-color: #f0f8ff; }
        .faq-item:nth-child(3) { border-color: #FFD700; background-color: #fffef0; }
        .faq-item:nth-child(4) { border-color: #DDA0DD; background-color: #faf0fa; }
        .faq-item:nth-child(5) { border-color: #87CEEB; background-color: #f0f8ff; }
        .faq-item:nth-child(6) { border-color: #F0E68C; background-color: #fffef0; }
        .faq-item:nth-child(7) { border-color: #DDA0DD; background-color: #faf0fa; }
        .faq-item:nth-child(8) { border-color: #98FB98; background-color: #f0fff0; }
        .faq-item:nth-child(9) { border-color: #FFB6C1; background-color: #fff0f5; }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            font-family: 'Inter', sans-serif;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }

        .faq-emoji {
            font-size: 24px;
            margin-right: 15px;
        }

        .faq-arrow {
            font-size: 20px;
            color: #3399ff;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            text-align: left;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 30px 25px 30px;
        }

        .faq-answer p {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            margin: 0;
            font-family: 'Inter', sans-serif;
        }

        /* Sticky CTA Button dla mobile */
        .sticky-cta {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: #3399ff;
            color: white;
            padding: 15px 20px;
            border-radius: 25px;
            text-align: center;
            font-weight: 600;
            box-shadow: 0 5px 20px rgba(51, 153, 255, 0.4);
            z-index: 999;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s ease;
            display: none;
        }
        
        .sticky-cta.show {
            transform: translateY(0);
            opacity: 1;
        }
        
        .sticky-cta:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .sticky-cta {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 94px;
                flex-direction: column;
                background: #1e3a8a;
                width: 100%;
                padding: 20px;
                transition: 0.3s;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-toggle {
                display: block;
            }
            
            .nav-dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(255,255,255,0.1);
                margin-top: 10px;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .hero-content {
                padding-right: 0;
                order: 2;
            }
            
            .hero-benefits li {
                font-size: 16px;
            }
			.hero-benefits {
    text-align: left; 
			}
            
            .hero-credentials {
                justify-content: center;
            }
            
            .credentials-item {
                font-size: 12px;
            }
            
            .hero-image {
                order: 1;
            }
            
            .hero-image img {
                height: 300px;
            }
            
            .home-hero h1 {
                font-size: 32px;
            }
            
            .home-hero {
                padding: 100px 0 60px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 250px;
            }
            
            .destination-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-contact {
                flex-direction: column;
                gap: 5px;
                font-size: 12px;
            }

            .testimonials-section h2,
            .faq-section h2 {
                font-size: 36px;
            }

            .testimonials-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .testimonial-card {
                padding: 30px 20px;
            }

            .faq-question {
                padding: 20px;
                font-size: 16px;
            }

            .faq-answer {
                padding: 0 20px;
            }

            .faq-item.active .faq-answer {
                padding: 0 20px 20px 20px;
            }
			.nav-contact a:nth-child(2),
        .nav-contact a:nth-child(3) {
            display: none;
        }
        }

/* ========================================
   HOME HERO OVERRIDES (dla index.html)
   ======================================== */
.home-hero {
    background: #ffffff;
    color: #1a1a1a;
    padding: 150px 0 80px;
    margin-top: 94px;
    border-radius: 0;
    margin-bottom: 0;
}

.home-hero h1 {
    color: #1a1f2e;
    font-size: 48px;
}

.home-hero p {
    color: #7f8c8d;
}
