/**
 * Pan Buźka Landing - Design System
 * REPLIKA wizualna z grafiki eventowej
 * Granat + Złoto + Premium Event Style
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   DESIGN TOKENS
============================================ */
:root {
    /* Kolory główne */
    --color-navy: #0f1535;
    --color-navy-light: #1a2147;
    --color-navy-gradient: linear-gradient(180deg, #0f1535 0%, #1a2147 50%, #0f1535 100%);
    
    /* Złoto - eleganckie, nie żółte */
    --color-gold: #c9a227;
    --color-gold-light: #d4af37;
    --color-gold-dark: #a67c00;
    --color-gold-gradient: linear-gradient(135deg, #d4af37 0%, #c9a227 40%, #a67c00 100%);
    --color-gold-text: linear-gradient(180deg, #f5d442 0%, #d4af37 30%, #c9a227 60%, #a67c00 100%);
    --color-gold-glow: 0 0 30px rgba(201, 162, 39, 0.4);
    
    /* Neutralne */
    --color-white: #ffffff;
    --color-cream: #faf8f3;
    --color-beige: #f5f0e8;
    --color-text-dark: #1a1a2e;
    --color-text-light: rgba(255, 255, 255, 0.9);
    --color-text-muted: rgba(255, 255, 255, 0.7);
    
    /* Typografia */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Effects */
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-button: 0 8px 25px rgba(212, 160, 18, 0.4);
    --border-radius: 16px;
    --border-radius-sm: 8px;
}

/* ============================================
   RESET & BASE
============================================ */
html.pbl-landing-page,
body.pbl-landing-page {
    overflow-x: hidden;
    max-width: 100vw;
}

.pbl-landing {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text-dark);
    background: var(--color-cream);
    overflow-x: hidden;
    max-width: 100%;
}

.pbl-landing * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

.pbl-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY - EVENT STYLE
============================================ */
.pbl-landing h1,
.pbl-landing h2,
.pbl-landing h3 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.pbl-section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pbl-section-title span,
.pbl-section-title strong {
    color: var(--color-gold);
}

/* Dark section titles */
.pbl-section-dark .pbl-section-title {
    color: var(--color-white);
}

/* ============================================
   BUTTONS - GOLD CTA STYLE
============================================ */
.pbl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pbl-btn-primary {
    background: var(--color-gold-gradient);
    color: var(--color-navy);
    box-shadow: var(--shadow-button);
    position: relative;
    overflow: hidden;
}

.pbl-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.pbl-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 160, 18, 0.5);
}

.pbl-btn-primary:hover::before {
    left: 100%;
}

.pbl-btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.4);
    font-size: 0.85rem;
    padding: 14px 28px;
}

.pbl-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

.pbl-btn-large {
    padding: 22px 50px;
    font-size: 1.1rem;
}

.pbl-btn-dark {
    background: var(--color-navy);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.pbl-btn-dark:hover {
    background: var(--color-gold);
    color: var(--color-navy);
}

/* ============================================
   HERO SECTION - PREMIUM EVENT
============================================ */
.pbl-hero {
    position: relative;
    min-height: 75vh;
    background: var(--color-navy);
    overflow: visible;
}

.pbl-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pbl-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 21, 53, 0.9) 0%,
        rgba(15, 21, 53, 0.7) 40%,
        rgba(15, 21, 53, 0.4) 70%,
        rgba(15, 21, 53, 0.3) 100%
    );
}

/* Magical particles/stars effect */
.pbl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.4), transparent);
    background-size: 200px 200px;
    animation: sparkle 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.pbl-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    align-items: center;
    min-height: 75vh;
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 40px 60px;
}

.pbl-hero-content {
    color: var(--color-white);
    align-self: center;
    padding-top: 40px;
}

.pbl-hero-logo {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 10;
}

.pbl-hero-logo img {
    height: 70px;
    width: auto;
}

.pbl-hero-h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.pbl-hero-line1 {
    display: block;
    background: var(--color-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    filter: drop-shadow(0 4px 15px rgba(201, 162, 39, 0.4));
}

.pbl-hero-line2 {
    display: block;
    color: var(--color-white);
    white-space: nowrap;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.pbl-hero-h2 {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 700;
    background: var(--color-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
}

.pbl-hero-desc {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 25px;
    max-width: 480px;
}

/* Social Proof Bar - TikTok/YouTube stats */
/* 3 zdjęcia w Hero */
.pbl-hero-photos {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.pbl-hero-photo {
    width: 145px;
    height: 145px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.pbl-hero-photo:hover {
    transform: scale(1.05);
}

.pbl-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Responsywność zdjęć Hero */
@media (max-width: 1024px) {
    .pbl-hero-photos {
        justify-content: center;
        gap: 12px;
    }
    
    .pbl-hero-photo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .pbl-hero-photos {
        justify-content: center;
        gap: 10px;
    }
    
    .pbl-hero-photo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .pbl-hero-photo {
        width: 90px;
        height: 90px;
        border-radius: 8px;
    }
    
    .pbl-hero-photo img {
        border-radius: 8px;
    }
}

.pbl-proof-item strong {
    color: var(--color-gold-light);
    font-weight: 800;
}

.pbl-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-top: 35px;
}

.pbl-hero-cta-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pbl-hero-cta-secondary:hover {
    color: var(--color-gold-light);
}

.pbl-hero-cta-secondary svg {
    width: 16px;
    height: 16px;
}

.pbl-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: -5px;
}

.pbl-hero-image img {
    max-height: 95vh;
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
}


/* ============================================
   LOGOS/PARTNERS SECTION
============================================ */
.pbl-logos-section {
    padding: 50px 0;
    background: var(--color-cream);
    text-align: center;
}

.pbl-logos-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.pbl-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 35px 50px;
}

.pbl-logo-item {
    transition: all 0.3s ease;
    max-width: 100px;
}

.pbl-logo-item img {
    max-height: 40px;
    width: auto;
    filter: grayscale(30%) opacity(0.8);
    transition: filter 0.3s ease;
}

.pbl-logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* ============================================
   WHY SECTION - CREAM BACKGROUND (nowy layout)
============================================ */
.pbl-why {
    padding: var(--section-padding);
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pbl-why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pbl-why-content-side {
    padding-left: 20px;
    order: 2;
}

.pbl-why-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}

.pbl-why-subtitle {
    font-size: 1.15rem;
    font-style: italic;
    color: #c9a227;
    margin-bottom: 50px;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pbl-why-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

.pbl-why-list-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.pbl-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pbl-why-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding: 0;
}

.pbl-why-list-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pbl-why-list-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.pbl-why-list-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
}

.pbl-why-list-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.pbl-why-image-side {
    position: relative;
    order: 1;
    overflow: hidden;
}

.pbl-why-image-side img {
    width: 130%;
    max-width: 130%;
    height: auto;
    max-height: 780px;
    object-fit: contain;
    object-position: center bottom;
    margin-left: -15%;
}

/* Responsive fix for Why image */
@media (max-width: 1200px) {
    .pbl-why-image-side img {
        width: 115%;
        max-width: 115%;
        margin-left: -7.5%;
    }
}

/* Klasy kolorów tekstu - złoty i granatowy */
.pbl-landing .gold,
.pbl-landing span.gold {
    color: #c9a227 !important;
    font-weight: 600;
}

.pbl-landing .navy,
.pbl-landing span.navy {
    color: #0f1535 !important;
}

/* Trusted Logos Section */
.pbl-trusted-section {
    margin-top: 80px;
    padding-top: 60px;
}

.pbl-trusted-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
}

.pbl-trusted-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #c9a227 50%, transparent 100%);
}

.pbl-trusted-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c9a227;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}

.pbl-trusted-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.pbl-trusted-carousel::before,
.pbl-trusted-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.pbl-trusted-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.pbl-trusted-carousel::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #ffffff 100%);
}

.pbl-trusted-track {
    display: flex;
    gap: 60px;
    animation: scrollLogos 23s linear infinite;
    width: max-content;
    user-select: none;
    pointer-events: none;
}

.pbl-trusted-logo {
    flex-shrink: 0;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    pointer-events: none;
}

.pbl-trusted-logo img {
    max-height: 85px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

@media (max-width: 992px) {
    .pbl-trusted-track {
        gap: 40px;
    }
    
    .pbl-trusted-logo {
        height: 70px;
    }
    
    .pbl-trusted-logo img {
        max-height: 70px;
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .pbl-trusted-track {
        gap: 30px;
        animation-duration: 15s;
    }
    
    .pbl-trusted-logo {
        height: 55px;
    }
    
    .pbl-trusted-logo img {
        max-height: 55px;
        max-width: 130px;
    }
    
    .pbl-trusted-section {
        margin-top: 40px;
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .pbl-trusted-track {
        gap: 25px;
        animation-duration: 12s;
    }
    
    .pbl-trusted-logo {
        height: 45px;
    }
    
    .pbl-trusted-logo img {
        max-height: 45px;
        max-width: 100px;
    }
    
    .pbl-trusted-separator {
        gap: 15px;
    }
    
    .pbl-trusted-line {
        max-width: 50px;
    }
    
    .pbl-trusted-title {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
}

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

@media (max-width: 992px) {
    .pbl-why-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pbl-why-content-side {
        padding-left: 0;
        order: 2;
    }
    
    .pbl-why-image-side {
        order: 1;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .pbl-why-image-side img {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        max-height: 500px;
    }
    
    .pbl-why-title {
        text-align: center;
    }
    
    .pbl-trusted-section {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .pbl-trusted-line {
        max-width: 80px;
    }
    
    .pbl-trusted-title {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}

/* ============================================
   EVENTS/IMPREZY SECTION
============================================ */
.pbl-events {
    padding: var(--section-padding);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
    overflow: hidden;
}

.pbl-events-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(250, 250, 250, 0.82) 100%);
    pointer-events: none;
}

.pbl-events-content {
    position: relative;
    z-index: 1;
}

.pbl-events-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pbl-events-title .gold {
    color: #c9a227;
}

.pbl-events-subtitle {
    font-size: 1rem;
    color: #444;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.pbl-events-subtitle .gold {
    color: #c9a227;
    font-weight: 600;
}

.pbl-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pbl-events-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    border-radius: 15px;
    padding: 15px 15px 20px;
    border: 3px solid #c9a227;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pbl-events-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.2);
    border-color: #d4a012;
}

.pbl-events-card-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 4/3;
}

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

.pbl-events-card:hover .pbl-events-card-image img {
    transform: scale(1.05);
}

.pbl-events-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #c9a227;
    margin-bottom: 18px;
    line-height: 1.3;
}

.pbl-events-card-desc {
    font-size: 0.85rem;
    color: var(--color-navy);
    line-height: 1.6;
}

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

@media (max-width: 600px) {
    .pbl-events-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pbl-events-card-title {
        font-size: 1rem;
    }
    
    .pbl-events-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    .pbl-events-footer {
        font-size: 0.9rem;
        margin-top: 30px;
    }
}

/* Events footer */
.pbl-events-footer {
    text-align: center;
    color: #444;
    margin-top: 40px;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pbl-events-footer .gold {
    color: #c9a227;
    font-weight: 600;
    font-style: normal;
}

.pbl-events-footer strong {
    color: var(--color-navy);
}

/* ============================================
   GALLERY SECTION - SLIDER
============================================ */
.pbl-gallery {
    padding: var(--section-padding);
    background: var(--color-beige);
}

.pbl-gallery-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.pbl-gallery-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-navy);
    border: 2px solid #c9a227;
    color: #c9a227;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pbl-gallery-arrow:hover {
    background: #c9a227;
    color: var(--color-navy);
}

.pbl-gallery-arrow svg {
    width: 24px;
    height: 24px;
}

.pbl-gallery-slider {
    overflow: hidden;
    flex: 1;
}

.pbl-gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.pbl-gallery-item {
    flex: 0 0 calc(20% - 16px);
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 3/2;
    box-shadow: var(--shadow-card);
    cursor: pointer;
}

.pbl-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pbl-gallery-item:hover img {
    transform: scale(1.08);
}

.pbl-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 21, 53, 0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pbl-gallery-item:hover::after {
    opacity: 1;
}

/* Gallery Lightbox */
.pbl-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pbl-gallery-lightbox.active {
    display: flex;
}

.pbl-gallery-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.pbl-gallery-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
}

.pbl-gallery-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pbl-gallery-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pbl-gallery-lightbox-close:hover {
    background: #fff;
    color: #000;
}

.pbl-gallery-lightbox-close svg {
    width: 20px;
    height: 20px;
}

.pbl-gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pbl-gallery-lightbox-nav:hover {
    background: #c9a227;
    transform: translateY(-50%) scale(1.1);
}

.pbl-gallery-lightbox-nav svg {
    width: 24px;
    height: 24px;
}

.pbl-gallery-lightbox-prev {
    left: -70px;
}

.pbl-gallery-lightbox-next {
    right: -70px;
}

/* Lightbox responsive improvements */
@media (max-width: 600px) {
    .pbl-gallery-lightbox {
        padding: 15px;
    }
    
    .pbl-gallery-lightbox-content {
        max-width: 95vw;
    }
    
    .pbl-gallery-lightbox-close {
        top: -40px;
        width: 36px;
        height: 36px;
    }
    
    .pbl-gallery-lightbox-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1400px) {
    .pbl-gallery-item {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 1024px) {
    .pbl-gallery-item {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .pbl-gallery-item {
        flex: 0 0 calc(50% - 10px);
        aspect-ratio: 4/3;
    }
    
    .pbl-gallery-arrow {
        width: 40px;
        height: 40px;
    }
    
    .pbl-gallery-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .pbl-gallery-lightbox-prev {
        left: 10px;
    }
    
    .pbl-gallery-lightbox-next {
        right: 10px;
    }
    
    .pbl-gallery-lightbox-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .pbl-gallery-item {
        flex: 0 0 calc(100% - 10px);
        aspect-ratio: 16/10;
    }
    
    .pbl-gallery-slider-wrapper {
        gap: 10px;
    }
}

/* ============================================
   MEDIA SECTION
============================================ */
.pbl-media {
    padding: var(--section-padding);
    background: var(--color-navy);
}

.pbl-media .pbl-section-title {
    color: #fff;
}

.pbl-media-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1rem;
    line-height: 1.7;
}

.pbl-media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pbl-media-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pbl-media-item:hover {
    transform: translateY(-5px);
}

.pbl-media-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 15px;
    border: 3px solid #c9a227;
}

.pbl-media-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pbl-media-item:hover .pbl-media-thumbnail img {
    transform: scale(1.05);
}

.pbl-media-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(201, 162, 39, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    transition: all 0.3s ease;
}

.pbl-media-play svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
}

.pbl-media-item:hover .pbl-media-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: #c9a227;
}

.pbl-media-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #c9a227;
    margin-bottom: 8px;
}

.pbl-media-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Video Modal */
.pbl-video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.pbl-video-modal.active {
    display: flex;
}

.pbl-video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.pbl-video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 1;
}

.pbl-video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pbl-video-modal-close:hover {
    background: #fff;
    color: #000;
}

.pbl-video-modal-close svg {
    width: 20px;
    height: 20px;
}

.pbl-video-modal-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
}

.pbl-video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .pbl-media-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pbl-media-play {
        width: 60px;
        height: 60px;
    }
    
    .pbl-media-play svg {
        width: 24px;
        height: 24px;
    }
    
    .pbl-media-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    
    .pbl-media-title {
        font-size: 1rem;
    }
    
    .pbl-media-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pbl-media-play {
        width: 50px;
        height: 50px;
    }
    
    .pbl-media-play svg {
        width: 20px;
        height: 20px;
        margin-left: 3px;
    }
    
    .pbl-video-modal-close {
        top: -45px;
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.pbl-testimonials {
    position: relative;
}

/* Header bar */
.pbl-testimonials-header {
    background: var(--color-gold-gradient);
    padding: 25px 0;
}

.pbl-testimonials-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.pbl-testimonials-ornament {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-navy), transparent);
}

.pbl-testimonials-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

/* Body */
.pbl-testimonials-body {
    padding: 60px 0 80px;
    background-color: #f8f6f1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.pbl-testimonials-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(248, 246, 241, 0.85) 0%, rgba(248, 246, 241, 0.95) 100%);
    pointer-events: none;
}

.pbl-testimonials-body .pbl-container {
    position: relative;
    z-index: 1;
}

/* Slider wrapper */
.pbl-testimonials-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pbl-testimonials-slider {
    flex: 1;
    overflow: hidden;
}

.pbl-testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Arrow buttons */
.pbl-testimonials-arrow {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a227 0%, #d4a012 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.pbl-testimonials-arrow:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.pbl-testimonials-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pbl-testimonials-arrow svg {
    width: 24px;
    height: 24px;
}

/* Testimonial Card */
.pbl-testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    background: linear-gradient(135deg, #fffef9 0%, #faf8f3 100%);
    border: 2px solid #c9a227;
    border-radius: 8px;
    padding: 50px 60px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

/* Corner ornaments */
.pbl-testimonial-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: #c9a227;
    border-style: solid;
}

.pbl-testimonial-corner-tl {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
}

.pbl-testimonial-corner-tr {
    top: 10px;
    right: 10px;
    border-width: 2px 2px 0 0;
}

.pbl-testimonial-corner-bl {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 2px 2px;
}

.pbl-testimonial-corner-br {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
}

/* Content layout */
.pbl-testimonial-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: center;
}

/* Quote side */
.pbl-testimonial-quote-side {
    text-align: center;
}

.pbl-testimonial-ornament-top {
    width: 120px;
    height: 30px;
    margin: 0 auto 20px;
    color: #c9a227;
}

.pbl-testimonial-ornament-top svg {
    width: 100%;
    height: 100%;
}

.pbl-testimonial-quote {
    position: relative;
    padding: 0 30px;
}

.pbl-quote-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 5rem;
    line-height: 1;
    color: #c9a227;
    opacity: 0.6;
    position: absolute;
}

.pbl-quote-open {
    top: -20px;
    left: -10px;
}

.pbl-quote-close {
    bottom: -50px;
    right: -10px;
}

.pbl-testimonial-quote p {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-navy);
    font-style: italic;
    margin: 0;
}

/* Stars */
.pbl-testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.pbl-star {
    width: 22px;
    height: 22px;
    color: #c9a227;
}

/* Author */
.pbl-testimonial-author {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Photo side */
.pbl-testimonial-photo-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pbl-testimonial-photo-wrap {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid #c9a227;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.3), 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.pbl-testimonial-photo-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 39, 0.3);
    pointer-events: none;
}

.pbl-testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pbl-testimonial-photo-placeholder {
    background: linear-gradient(135deg, #e8e2d7 0%, #d4cfc4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .pbl-testimonial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pbl-testimonial-photo-side {
        order: -1;
    }
    
    .pbl-testimonial-photo-wrap {
        width: 200px;
        height: 200px;
    }
    
    .pbl-testimonial-card {
        padding: 40px 30px;
    }
    
    .pbl-testimonials-slider-wrapper {
        gap: 15px;
    }
    
    .pbl-testimonials-arrow {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .pbl-testimonials-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile: arrows below testimonial */
@media (max-width: 768px) {
    .pbl-testimonials-slider-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px 15px;
    }
    
    .pbl-testimonials-slider {
        order: 1;
        flex: 0 0 100%;
        width: 100%;
    }
    
    .pbl-testimonials-prev {
        order: 2;
    }
    
    .pbl-testimonials-next {
        order: 3;
    }
    
    .pbl-testimonials-arrow {
        position: relative;
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .pbl-testimonials-arrow svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 600px) {
    .pbl-testimonials-header {
        padding: 20px 0;
    }
    
    .pbl-testimonials-ornament {
        width: 40px;
    }
    
    .pbl-testimonials-title {
        font-size: 1.1rem;
    }
    
    .pbl-testimonials-body {
        padding: 40px 0 60px;
    }
    
    .pbl-testimonial-card {
        padding: 35px 20px;
    }
    
    .pbl-testimonial-quote p {
        font-size: 1rem;
    }
    
    .pbl-quote-mark {
        font-size: 3.5rem;
    }
    
    .pbl-quote-open {
        top: -10px;
        left: 0;
    }
    
    .pbl-quote-close {
        bottom: -35px;
        right: 0;
    }
    
    .pbl-testimonial-photo-wrap {
        width: 160px;
        height: 160px;
    }
    
    .pbl-testimonial-corner {
        width: 20px;
        height: 20px;
    }
    
    .pbl-testimonials-arrow {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .pbl-testimonials-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   CTA SECTION - FULL GOLD
============================================ */
.pbl-cta-section {
    padding: 70px 0;
    background: var(--color-gold-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pbl-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.pbl-cta-section h2 {
    position: relative;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pbl-cta-section .pbl-btn {
    position: relative;
    background: var(--color-navy);
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(15, 21, 53, 0.4);
}

.pbl-cta-section .pbl-btn:hover {
    background: #1a2147;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(15, 21, 53, 0.5);
}

/* CTA section responsive */
@media (max-width: 480px) {
    .pbl-cta-section {
        padding: 35px 0;
    }
    
    .pbl-cta-section h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .pbl-cta-section .pbl-btn {
        padding: 16px 30px;
        font-size: 0.85rem;
    }
}

/* ============================================
   OFFER SECTION - WITH BACKGROUND IMAGE
============================================ */
.pbl-offer {
    padding: var(--section-padding);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e8e2d7;
    overflow: hidden;
}

.pbl-offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 40, 0.85) 0%, rgba(20, 30, 60, 0.70) 100%);
    pointer-events: none;
}

.pbl-offer-content {
    position: relative;
    z-index: 1;
}

.pbl-offer-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pbl-offer-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

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

.pbl-offer-card {
    background: linear-gradient(180deg, #1C2438 0%, #0F1628 100%);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #c9a227;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), inset 0 -20px 40px rgba(0, 0, 0, 0.15);
    will-change: transform;
    position: relative;
}

.pbl-offer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.pbl-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.2), inset 0 -20px 40px rgba(0, 0, 0, 0.15);
    border-color: #d4a012;
}

.pbl-offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.pbl-offer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pbl-offer-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.pbl-offer-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pbl-offer-card-image {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
}

.pbl-offer-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.pbl-offer-card:hover .pbl-offer-card-image img {
    transform: scale(1.03);
}

.pbl-offer-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 50px;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
}

.pbl-offer-footer .gold {
    color: #d4a012;
    font-weight: 600;
    font-style: normal;
}

.pbl-offer-footer strong {
    color: #fff;
}

@media (max-width: 992px) {
    .pbl-offer-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    
    .pbl-offer-footer {
        margin-top: 40px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .pbl-offer-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .pbl-offer-card {
        padding: 25px 20px;
    }
    
    .pbl-offer-card-title {
        font-size: 1.05rem;
    }
    
    .pbl-offer-card-desc {
        font-size: 0.85rem;
    }
    
    .pbl-offer-icon {
        width: 70px;
        height: 70px;
    }
}

/* ============================================
   EXTRAS SECTION
============================================ */
.pbl-extras {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.pbl-extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pbl-extra-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-card);
    border-left: 5px solid var(--color-gold);
    transition: all 0.3s ease;
}

.pbl-extra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.pbl-extra-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-navy);
}

.pbl-extra-card p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.pbl-extras-list {
    list-style: none;
    padding: 0;
}

.pbl-extras-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #444;
}

.pbl-extras-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.pbl-extras-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 50px;
    padding: 25px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    border: 2px dashed #ddd;
}

/* Extras responsive */
@media (max-width: 768px) {
    .pbl-extras-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pbl-extra-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .pbl-extra-card {
        padding: 25px 20px;
    }
    
    .pbl-extra-card h3 {
        font-size: 1.1rem;
    }
    
    .pbl-extras-note {
        margin-top: 30px;
        padding: 20px 15px;
        font-size: 0.9rem;
    }
}

/* ============================================
   PROCESS SECTION
============================================ */
.pbl-process {
    padding: var(--section-padding);
    background: #f5f3ee;
}

.pbl-process-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 80px;
}

.pbl-process-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Golden connecting line */
.pbl-process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: calc(16.666% + 25px);
    right: calc(16.666% + 25px);
    height: 3px;
    background: linear-gradient(90deg, #c9a227, #d4a012, #c9a227);
    z-index: 1;
}

.pbl-process-step {
    flex: 1;
    max-width: 320px;
    position: relative;
}

.pbl-step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a2744 0%, #0f1a2e 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 3;
    border: 3px solid #c9a227;
}

.pbl-step-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px 25px 30px;
    margin-top: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
    height: calc(100% - 25px);
}

.pbl-step-icon {
    width: 100px;
    height: 100px;
    margin: 10px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pbl-step-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pbl-process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-navy);
}

.pbl-process-step p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Arrow between steps */
.pbl-process-arrow {
    position: absolute;
    top: 13px;
    left: -32px;
    width: 24px;
    height: 24px;
    background: #c9a227;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pbl-process-arrow svg {
    width: 14px;
    height: 14px;
    color: #fff;
    stroke-width: 3;
}

.pbl-process-cta {
    text-align: center;
    margin-top: 50px;
}

.pbl-btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, #d4a012 0%, #c9a227 50%, #b8941f 100%);
    color: var(--color-navy);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pbl-btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.pbl-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201, 162, 39, 0.5);
}

.pbl-btn-gold:hover::before {
    left: 100%;
}

/* Process section responsive */
@media (max-width: 600px) {
    .pbl-process {
        padding: 60px 0;
    }
    
    .pbl-process-title {
        font-size: 1.3rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .pbl-step-card {
        padding: 40px 15px 25px;
    }
    
    .pbl-step-icon {
        width: 80px;
        height: 80px;
    }
    
    .pbl-process-step h3 {
        font-size: 1rem;
    }
    
    .pbl-process-step p {
        font-size: 0.85rem;
    }
    
    .pbl-step-number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .pbl-process-cta {
        margin-top: 35px;
    }
    
    .pbl-btn-gold {
        padding: 16px 35px;
        font-size: 0.85rem;
    }
}

/* ============================================
   CONTACT FORM - DARK NAVY
============================================ */
.pbl-contact {
    padding: var(--section-padding);
    background: var(--color-navy-gradient);
    position: relative;
}

.pbl-contact::before {
    content: '';
    position: absolute;
    inset: 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='%23d4a012' 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");
    pointer-events: none;
}

.pbl-contact .pbl-section-title {
    color: var(--color-white);
}

.pbl-contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    border: 3px solid #c9a227;
}

.pbl-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.pbl-form-group {
    margin-bottom: 20px;
}

.pbl-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-navy);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pbl-form-group label .required {
    color: #e53935;
}

.pbl-form-group input,
.pbl-form-group select,
.pbl-form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: #fafafa;
}

.pbl-form-group input:focus,
.pbl-form-group select:focus,
.pbl-form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(212, 160, 18, 0.15);
}

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

.pbl-form-submit {
    text-align: center;
    margin-top: 35px;
}

.pbl-form-submit .pbl-btn {
    width: 100%;
    padding: 20px;
    font-size: 1rem;
}

/* Checkbox styling */
.pbl-form-checkbox {
    margin-bottom: 25px;
}

.pbl-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pbl-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: #c9a227;
    cursor: pointer;
}

.pbl-checkbox-text {
    color: var(--color-navy);
}

.pbl-checkbox-text a {
    color: #c9a227;
    text-decoration: underline;
    font-weight: 600;
}

.pbl-checkbox-text a:hover {
    color: #d4a012;
}

/* reCAPTCHA styling */
.pbl-form-recaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.pbl-form-recaptcha .g-recaptcha {
    transform-origin: center;
}

.pbl-form-microcopy {
    text-align: center;
    margin-top: 25px;
    color: #777;
    font-size: 0.85rem;
}

.pbl-form-microcopy p {
    margin: 6px 0;
}

.pbl-form-message {
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    text-align: center;
    font-weight: 600;
}

.pbl-form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.pbl-form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* ============================================
   FAQ SECTION
============================================ */
.pbl-faq {
    padding: var(--section-padding);
    background: var(--color-cream);
}

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

.pbl-faq-item {
    margin-bottom: 16px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.pbl-faq-item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pbl-faq-item.active {
    box-shadow: 0 15px 40px rgba(212, 160, 18, 0.15);
}

.pbl-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: var(--color-white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy);
    text-align: left;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.pbl-faq-question:hover {
    background: #fafafa;
}

.pbl-faq-item.active .pbl-faq-question {
    color: var(--color-gold);
}

.pbl-faq-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    color: var(--color-gold);
    flex-shrink: 0;
}

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

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

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

.pbl-faq-answer p {
    padding: 0 30px 30px;
    color: #555;
    line-height: 1.8;
}

/* FAQ responsive */
@media (max-width: 480px) {
    .pbl-faq-item {
        margin-bottom: 12px;
    }
    
    .pbl-faq-question {
        padding: 18px 15px;
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .pbl-faq-icon {
        width: 24px;
        height: 24px;
    }
    
    .pbl-faq-answer p {
        padding: 0 15px 20px;
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* ============================================
   FOOTER - DARK NAVY
============================================ */
.pbl-footer {
    padding: 50px 0;
    background: var(--color-navy);
    text-align: center;
}

.pbl-footer-logo {
    margin-bottom: 20px;
}

.pbl-footer-logo img {
    height: 55px;
    width: auto;
}

.pbl-footer-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Footer responsive */
@media (max-width: 480px) {
    .pbl-footer {
        padding: 35px 0;
    }
    
    .pbl-footer-logo img {
        height: 40px;
    }
    
    .pbl-footer-text {
        font-size: 0.8rem;
    }
}

/* ============================================
   RESPONSIVE - COMPREHENSIVE RWD FIXES
============================================ */

/* Tablet landscape (1024px) */
@media (max-width: 1024px) {
    .pbl-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 20px 0;
        min-height: auto;
        align-items: center;
    }
    
    .pbl-hero-content {
        order: 1;
    }
    
    .pbl-hero-image {
        order: 2;
        margin-bottom: 0;
    }
    
    .pbl-hero-image img {
        max-height: 60vh;
    }
    
    .pbl-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .pbl-hero-cta {
        align-items: center;
    }
    
    .pbl-proof-bar {
        justify-content: center;
    }
    
    .pbl-why-grid,
    .pbl-extras-grid {
        grid-template-columns: 1fr;
    }
    
    /* Why section image fix */
    .pbl-why-image-side img {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
    
    .pbl-process-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .pbl-process-steps::before {
        display: none;
    }
    
    .pbl-process-step {
        max-width: 400px;
        width: 100%;
    }
    
    .pbl-process-arrow {
        display: none;
    }
}

/* Tablet portrait (992px) - Offer grid 2 columns */
@media (max-width: 992px) and (min-width: 601px) {
    .pbl-offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pbl-offer-grid .pbl-offer-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Tablet (768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }
    
    .pbl-container {
        padding: 0 20px;
    }
    
    .pbl-form-row {
        grid-template-columns: 1fr;
    }
    
    .pbl-contact-form {
        padding: 40px 25px;
    }
    
    .pbl-hero-h1 {
        font-size: 2rem;
    }
    
    /* Allow text wrapping on mobile */
    .pbl-hero-line1,
    .pbl-hero-line2 {
        white-space: normal;
        word-wrap: break-word;
    }
    
    .pbl-btn {
        padding: 16px 30px;
        font-size: 0.85rem;
        min-height: 48px; /* Touch target */
    }
    
    .pbl-proof-item {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .pbl-hero-logo {
        position: relative;
        top: 0;
        left: 0;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .pbl-section-title {
        margin-bottom: 40px;
    }
    
    /* Why section */
    .pbl-why-title {
        font-size: 1.8rem;
    }
    
    .pbl-why-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    /* Offer section */
    .pbl-offer-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pbl-offer-title,
    .pbl-events-title {
        font-size: 1.6rem;
    }
    
    /* Process section */
    .pbl-process-title {
        font-size: 1.6rem;
        margin-bottom: 50px;
    }
    
    /* CTA section */
    .pbl-cta-section {
        padding: 50px 0;
    }
    
    .pbl-cta-section h2 {
        font-size: 1.5rem;
        padding: 0 20px;
    }
    
    /* FAQ */
    .pbl-faq-question {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .pbl-faq-answer p {
        padding: 0 20px 20px;
    }
}

/* Large phones (600px) */
@media (max-width: 600px) {
    .pbl-offer-grid .pbl-offer-card:last-child {
        grid-column: auto;
        max-width: none;
    }
    
    /* Testimonials card padding */
    .pbl-testimonial-card {
        padding: 30px 15px;
    }
    
    .pbl-testimonial-quote {
        padding: 0 15px;
    }
}

/* Medium phones (480px) */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .pbl-container {
        padding: 0 16px;
    }
    
    .pbl-hero-inner {
        padding: 60px 16px 0;
    }
    
    .pbl-hero-h1 {
        font-size: 1.7rem;
    }
    
    .pbl-hero-h2 {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }
    
    .pbl-hero-desc {
        font-size: 1rem;
    }
    
    .pbl-btn-large {
        padding: 18px 35px;
        font-size: 0.9rem;
    }
    
    /* Section titles */
    .pbl-section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .pbl-why-title,
    .pbl-offer-title,
    .pbl-events-title {
        font-size: 1.4rem;
    }
    
    .pbl-process-title {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
    
    /* Cards */
    .pbl-offer-card,
    .pbl-events-card {
        padding: 20px 15px;
    }
    
    .pbl-step-card {
        padding: 45px 15px 25px;
    }
    
    /* Form */
    .pbl-contact-form {
        padding: 30px 20px;
    }
    
    .pbl-form-group label {
        font-size: 0.85rem;
    }
    
    .pbl-form-group input,
    .pbl-form-group select,
    .pbl-form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Checkbox */
    .pbl-checkbox-label {
        font-size: 0.85rem;
    }
    
    /* reCAPTCHA scale for small screens */
    .pbl-form-recaptcha .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }
    
    /* CTA */
    .pbl-cta-section {
        padding: 40px 0;
    }
    
    .pbl-cta-section h2 {
        font-size: 1.3rem;
    }
    
    /* Footer */
    .pbl-footer {
        padding: 40px 0;
    }
    
    .pbl-footer-logo img {
        height: 45px;
    }
}

/* Small phones (360px) */
@media (max-width: 360px) {
    .pbl-container {
        padding: 0 12px;
    }
    
    .pbl-hero-h1 {
        font-size: 1.5rem;
    }
    
    .pbl-hero-h2 {
        font-size: 0.8rem;
    }
    
    .pbl-btn {
        padding: 14px 24px;
        font-size: 0.8rem;
    }
    
    .pbl-btn-large {
        padding: 16px 28px;
        font-size: 0.85rem;
    }
    
    .pbl-section-title,
    .pbl-why-title,
    .pbl-offer-title,
    .pbl-events-title,
    .pbl-process-title {
        font-size: 1.3rem;
    }
    
    /* Hero photos */
    .pbl-hero-photo {
        width: 80px;
        height: 80px;
    }
    
    /* reCAPTCHA extra small */
    .pbl-form-recaptcha .g-recaptcha {
        transform: scale(0.77);
    }
    
    /* Testimonials */
    .pbl-testimonial-photo-wrap {
        width: 140px;
        height: 140px;
    }
    
    .pbl-testimonial-quote p {
        font-size: 0.9rem;
    }
    
    .pbl-quote-mark {
        font-size: 3rem;
    }
    
    /* Gallery arrows closer */
    .pbl-gallery-slider-wrapper {
        gap: 8px;
    }
    
    .pbl-gallery-arrow {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    
    .pbl-gallery-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    /* Testimonials arrows on mobile - keep below */
    .pbl-testimonials-slider-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 15px;
    }
    
    .pbl-testimonials-arrow {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .pbl-testimonials-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error state */
.pbl-landing .pbl-error {
    border-color: #e53935 !important;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}
