/* ============================================
   SELFDEVELOPMENT - MAIN STYLES
   Migrated from WordPress/Elementor
   ============================================ */

/* === VARIABLES === */
:root {
    /* Colors */
    --purple: #612F89;
    --purple-dark: #4a2369;
    --purple-light: rgba(97, 47, 137, 0.1);
    --gold: #bd8e00;
    --gold-light: #D4A853;
    --dark: #2c2d33;
    --white: #ffffff;
    --gray-light: #f8f8f8;
    --gray: #e4e5eb;
    --gray-dark: #666;

    /* Fonts */
    --font-main: 'Sora', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Transitions */
    --transition: 0.3s ease;
}

/* === RESET === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    padding-top: 80px; /* Space for fixed header */
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* === UTILITIES === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.purple { color: var(--purple); }
.gold { color: var(--gold); }

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    background: var(--purple);
    color: var(--white);
}

.btn-sm:hover {
    background: var(--purple-dark);
}

.btn-calculator {
    background: var(--gold);
    color: var(--white);
    font-size: 13px;
    padding: 10px 20px;
}

.btn-calculator:hover {
    background: var(--gold-light);
}

/* === HEADER 2025 - FLAGSHIP DESIGN === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 26, 46, 0.95);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 16px 24px;
    gap: 40px;
}

/* Logo */
.header .logo {
    flex-shrink: 0;
}

.header .logo img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.header .logo:hover img {
    transform: scale(1.02);
}

/* Desktop Navigation - Center */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-desktop a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    position: relative;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.nav-desktop a:hover {
    color: var(--white);
}

.nav-desktop a:hover::after {
    width: 20px;
}

.nav-desktop a.active {
    color: var(--gold);
}

.nav-desktop a.active::after {
    width: 20px;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px !important;
    border-radius: 8px;
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.9rem !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white) !important;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a i {
    color: var(--gold);
    width: 18px;
    text-align: center;
}

/* Dropdown aliases (for pages using .dropdown-trigger/.dropdown-menu) */
.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-trigger i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px !important;
    border-radius: 8px;
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.9rem !important;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white) !important;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a i {
    color: var(--gold);
    width: 18px;
    text-align: center;
}

/* Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

/* Contact Icons */
.header-contact {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-contact a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    transition: all 0.25s ease;
}

.header-contact a:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    transform: translateY(-2px);
}

.header-contact a.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.header-contact a.phone:hover {
    background: rgba(189, 142, 0, 0.15);
    color: var(--gold);
}

/* CTA Button - Hero Element */
.btn-header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4a853 100%);
    color: #1a1a2e;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(189, 142, 0, 0.25);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(189, 142, 0, 0.35);
    background: linear-gradient(135deg, #d4a853 0%, var(--gold) 100%);
}

.btn-header-cta i {
    font-size: 14px;
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    transition: all 0.25s ease;
}

.lang-switch .flag-de {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.lang-switch:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.12);
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-mobile a {
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    transition: all 0.25s ease;
}

.nav-mobile a:hover {
    background: rgba(255,255,255,0.06);
    color: var(--gold);
}

/* Mobile CTA in menu */
.nav-mobile .mobile-cta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile .btn-header-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

/* Mobile Extras - Contact & Language */
.mobile-extras {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-contact-btn {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.mobile-contact-btn.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.mobile-contact-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.25);
}

.mobile-contact-btn.phone {
    background: rgba(189, 142, 0, 0.15);
    color: var(--gold);
}

.mobile-contact-btn.phone:hover {
    background: rgba(189, 142, 0, 0.25);
}

.mobile-lang-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.mobile-lang-btn:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

.mobile-lang-btn .flag-de {
    border-radius: 2px;
}


/* === HERO SECTION === */
.hero {
    background: var(--purple);
    position: relative;
    overflow: hidden;
}

.hero-tools {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-tools .btn-calculator,
.hero-tools .btn-map {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-tools .btn-calculator {
    background: var(--gold);
    color: var(--dark);
}

.hero-tools .btn-map {
    background: var(--purple);
    color: var(--white);
}

.hero-tools .btn-calculator:hover,
.hero-tools .btn-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.hero-slider {
    position: relative;
    min-height: 45vh;
}

.hero-slides {
    position: relative;
}

.hero-slide {
    display: none;
    min-height: 45vh;
    padding: 60px 4%;
}

.hero-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.slide-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 40px;
}

.slide-content.reverse {
    flex-direction: row-reverse;
}

.slide-text {
    flex: 1;
    color: var(--white);
}

.slide-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 5px;
}

.slide-title {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.slide-title-big {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.slide-title-big .gold {
    color: var(--gold);
}

.slide-text h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.slide-list {
    margin-top: 25px;
}

.slide-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.slide-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
}

.slide-image {
    flex: 0 0 auto;
    text-align: center;
}

.slide-image img {
    max-height: 500px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.slide-caption {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--white);
}

/* Slider Navigation */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.slider-prev { left: 15px; }
.slider-next { right: 15px; }

.slider-prev svg,
.slider-next svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255,255,255,0.4);
}

/* === OFFERS SECTION === */
.offers-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h1 {
    font-size: 2rem;
    font-weight: 700;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--gray-dark);
    padding: 40px;
}

/* Offer Card - New Design 2026 */
.offer-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.offer-card-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.offer-card-link:hover {
    color: inherit;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Purple Header with Branding */
.offer-card-header {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    min-height: 100px;
}

.offer-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.offer-card-brand {
    position: relative;
    z-index: 1;
}

.offer-card-brand-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #c9a227;
    margin-bottom: 4px;
}

.offer-card-brand-tagline {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 500;
}

.offer-card-brand-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
}

/* Content Area */
.offer-card-content {
    padding: 20px;
}

.offer-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.4;
}

.offer-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 14px;
}

.offer-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.offer-card-meta .icon {
    font-size: 1rem;
}

/* Gray Pill Tags */
.offer-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.offer-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Footer with Status Badge */
.offer-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 1px solid #f0f0f0;
}

.offer-card-footer .arrow-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
    transition: var(--transition);
}

.offer-card:hover .arrow-btn {
    background: var(--purple);
    color: var(--white);
}

/* Status Badge - Updated Colors */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.available {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.partial {
    background: #fff8e1;
    color: #f57c00;
}

.status-badge.full {
    background: #ffebee;
    color: #c62828;
}

/* Places count in badge */
.status-badge .places-count {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* NEW Badge */
.offer-badge-new {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e53935;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* URGENT Badge */
.offer-badge-urgent {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff9800;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    animation: pulse-urgent 2s infinite;
}

@keyframes pulse-urgent {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Accommodation Badge */
.offer-tag.accommodation {
    background: #e3f2fd;
    color: #1565c0;
}

/* Job Type Badge */
.offer-tag.job-type {
    background: #f3e5f5;
    color: #7b1fa2;
}

/* Driving License Badge */
.offer-tag.driving {
    background: #fff3e0;
    color: #e65100;
}

/* Posted Date - WCAG compliant contrast */
.offer-card-date {
    font-size: 0.75rem;
    color: #666;
    margin-top: 10px;
}

/* Extra Info Row */
.offer-card-extras {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}

.offer-extra {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #666;
}

.offer-extra .icon {
    font-size: 0.85rem;
}

/* === STEPS SECTION (Etapy Rekrutacji) === */
.steps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: var(--white);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: #1a1a2e;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* === REVIEWS SECTION - SPOTLIGHT === */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
    overflow: hidden;
}

.reviews-hero {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-score {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px 40px;
    margin-bottom: 30px;
}

.score-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.score-stars {
    font-size: 1.8rem;
    color: #fbbc04;
    letter-spacing: 4px;
    margin: 8px 0;
}

.score-count {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.reviews-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
}

/* Spotlight Carousel */
.spotlight-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 -20px;
    padding: 0 20px;
}

.spotlight-container {
    flex: 1;
    overflow: hidden;
    border-radius: 24px;
}

.spotlight-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-card {
    flex: 0 0 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    position: relative;
}

.spotlight-quote {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
}

.spotlight-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.spotlight-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-meta {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.author-meta i {
    margin-right: 6px;
    color: #4285f4;
}

.author-rating {
    color: #fbbc04;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Arrows */
.spotlight-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.spotlight-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #1a1a2e;
    transform: scale(1.1);
}

/* Dots */
.spotlight-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.spotlight-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.spotlight-dot:hover {
    background: rgba(255,255,255,0.4);
}

.spotlight-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* CTA Button */
.reviews-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-google-reviews:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.btn-google-reviews i:first-child {
    font-size: 1.3rem;
    color: #4285f4;
}

.btn-google-reviews i:last-child {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-google-reviews:hover i:last-child {
    transform: translateX(4px);
}

/* === WHY US SECTION === */
.why-us-section {
    padding: 80px 0;
    background: var(--white);
}

.why-us-section .section-subtitle {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 50px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 16px;
    background: var(--gray-light);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 61, 155, 0.15);
}

.why-card:first-child {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: var(--white);
}

.why-card:first-child .why-icon {
    background: rgba(255,255,255,0.2);
    color: var(--gold);
}

.why-card:first-child h3 {
    color: var(--gold);
}

.why-card:first-child p {
    color: rgba(255,255,255,0.9);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* === STATS SECTION === */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    color: var(--gold);
    margin-left: -5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    display: block;
    margin-top: 8px;
}

.stat-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 5px;
}

/* === PARTNERS SECTION - CAROUSEL === */
.partners-section {
    padding: 50px 0;
    background: var(--gray-light);
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.partners-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 40px;
    animation: scroll-partners 25s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

img.partner-logo {
    height: 55px;
    width: auto;
    min-width: 100px;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 10px;
    flex-shrink: 0;
}

img.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* === FLOATING WHATSAPP === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a2e;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: #1a1a2e;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* === FAQ SECTION - LIGHT THEME === */
.faq-section {
    padding: 100px 0;
    background: var(--gray-light);
    position: relative;
}

.faq-section .section-title,
.faq-section h2.section-title {
    color: #1a1a2e !important;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.faq-section .section-title span,
.faq-section h2.section-title span {
    color: #d4af37 !important;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Staggered fade-in - only when JS adds .animate-ready */
.faq-item.animate-ready {
    opacity: 0;
    transform: translateY(30px);
}

.faq-item.animate-ready.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 61, 155, 0.15);
}

.faq-item.visible:hover {
    transform: translateY(-2px);
}

/* Ripple effect container */
.faq-question {
    position: relative;
    overflow: hidden;
}

.faq-question .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(106, 61, 155, 0.2);
    transform: scale(0);
    animation: ripple-effect 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    color: var(--purple);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--purple);
}

.faq-item.active {
    box-shadow: 0 4px 15px rgba(106, 61, 155, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: #444;
    line-height: 1.8;
    font-size: 0.95rem;
    /* Content fade effect */
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

/* === FOOTER === */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

.footer-grid .footer-col h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-grid .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-grid .footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-grid .footer-col a:hover {
    color: var(--gold);
}

.footer-grid .footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 15px 0;
    line-height: 1.5;
}

.footer-grid .footer-contact p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid .footer-brand,
    .footer-grid .footer-contact {
        grid-column: 1 / -1;
    }
}

.footer-logo img {
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

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

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    color: var(--white);
    font-weight: 600;
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    flex-wrap: wrap;
    gap: 20px;
}

/* Daniel Bała link in footer */
.footer-daniel-link {
    color: var(--gold) !important;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.footer-daniel-link:hover {
    color: #fff !important;
    text-decoration: none;
}

/* Daniel Bała link in hero */
.daniel-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.daniel-link:hover {
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
}

.footer-legal a:hover {
    color: var(--white);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .slide-text h3 {
        font-size: 1.6rem;
    }

    .slide-image img {
        max-height: 375px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .stat-number {
        font-size: 2.8rem;
    }
}

/* Tablet/Small Desktop - 1200px */
@media (max-width: 1200px) {
    .nav-desktop a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .header-inner {
        gap: 20px;
    }

    .btn-header-cta {
        padding: 10px 18px;
    }
}

@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-inner {
        padding: 12px 20px;
        gap: 16px;
    }

    .btn-header-cta span {
        display: none;
    }

    .btn-header-cta {
        padding: 10px 14px;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    /* Hide some elements earlier */
    .header-contact {
        display: none;
    }

    .lang-switch span {
        display: none;
    }

    .lang-switch {
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile - Full */
    .nav-desktop,
    .header-contact,
    .btn-header-cta,
    .lang-switch {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-inner {
        padding: 12px 16px;
        gap: 12px;
    }

    .header .logo img {
        height: 40px;
    }

    body {
        padding-top: 64px;
    }

    /* Steps Section */
    .steps-section {
        padding: 60px 0;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .step-card {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Why Us Section */
    .why-us-section {
        padding: 60px 0;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Stats Section */
    .stats-section {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Partners */
    .partners-logos {
        gap: 20px;
    }

    .partner-logo {
        height: 40px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* Reviews Section - Spotlight */
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-title {
        font-size: 1.8rem;
    }

    .score-number {
        font-size: 3rem;
    }

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

    .spotlight-text {
        font-size: 1.1rem;
    }

    .spotlight-arrow {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .spotlight-author {
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-google-reviews {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
    }

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

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 0.9rem;
    }

    /* Hero */
    .hero-slide {
        min-height: auto;
        padding: 80px 4% 40px;
    }

    .slide-content,
    .slide-content.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .slide-subtitle,
    .slide-title {
        font-size: 1.2rem;
    }

    .slide-title-big {
        font-size: 1.8rem;
    }

    .slide-text h3 {
        font-size: 1.3rem;
    }

    .slide-list {
        text-align: left;
    }

    .slide-image img {
        max-height: 310px;
    }

    .slider-prev,
    .slider-next {
        width: 36px;
        height: 36px;
    }

    /* Offers */
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header h1 {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
