@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;600;700&display=swap');


.review-card * {
    pointer-events: auto !important;
}

.package-item * {
    pointer-events: auto !important;
}

.gallery-item * {
    pointer-events: auto !important;
}

/* WYMUŚ DZIAŁANIE OPINII */
.reviews-slider {
    overflow: hidden !important;
    position: relative !important;
}

/* === CSS VARIABLES === */
:root {
    --accent: #fc3201;
    --bg-dark: #0e132b;
    --cta-dark: #0e132c;
    --bg-light: #f8f9fa;
    --text-dark: #0e132b;
    --text-light: #fff;
    --gradient-main: linear-gradient(135deg, var(--accent), #d02304);
    --gradient-hover: linear-gradient(135deg, #ff4520, #b01e02);
    --gradient-dark: linear-gradient(135deg, var(--cta-dark), #1a1f3a);
}

/* === RESET & TYPOGRAPHY === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lexend', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === ACCESSIBILITY === */
:focus-visible {
    outline: 3px dashed var(--accent);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition-duration: 0.3s !important;
        scroll-behavior: auto !important;
    }
}

/* === HEADER === */
.header {
    background: var(--bg-dark);
    padding: 5px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    text-align: center;
    height: 155px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-width: 650px;
    width: 75%;
    height: auto;
    display: inline-block;
    transform: scale(1.15);
}

/* === HERO SECTION === */
.hero {
    background: var(--bg-dark);
    padding: 80px 0;
    text-align: center;
    color: var(--text-light);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-cta {
    background: var(--gradient-main);
    color: var(--text-light);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(252, 50, 1, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-cta:hover {
    background: var(--gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(252, 50, 1, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* === OFERTA SECTION === */
.oferta {
    background: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.oferta::before {
    content: '🎵 ✨ 🎤 🎊 🎯 🎬 🎪 🎭 🎨 🎸 🥳 🎉 🎈 🎁 🌟 💫 🎆 🎇 ⭐ 🔥 💥 🎮 🎲 🎺 🎻 🥁 🎹 🎧 🎼';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    font-size: 2.8rem;
    color: rgba(252, 50, 1, 0.08);
    line-height: 3.2;
    letter-spacing: 2.2rem;
    word-spacing: 1.5rem;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-15deg);
    animation: float-bg 18s linear infinite;
}

@keyframes float-bg {
    0% { transform: translateX(-50%) rotate(-15deg); }
    100% { transform: translateX(0%) rotate(-15deg); }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--accent);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.package-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid #f0f0f0;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
}

.package-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(252, 50, 1, 0.2);
    border-color: var(--accent);
}

/* NOWA FUNKCJONALNOŚĆ: Auto-flip na mobile podczas scroll */
.package-item.mobile-active .package-image {
    opacity: 0;
    transform: scale(0.95);
}

.package-item.mobile-active .package-details {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .package-item.mobile-active .package-image {
        opacity: 0 !important;
        transform: scale(0.95) !important;
    }
    
    .package-item.mobile-active .package-details {
        opacity: 1 !important;
        transform: scale(1) !important;
        pointer-events: auto !important;
    }
}
.package-image {
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.package-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 5;
}

.package-details img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* === GALERIA SECTION === */
.galeria {
    background: var(--bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.galeria::before {
    content: '🎪 🎭 🎨 🎸 🥳 🎉 🎈 🎁 🌟 💫 🎆 🎇 ⭐ 🔥 💥 🎵 ✨ 🎤 🎊 🎯 🎬 🎮 🎲 🎺 🎻 🥁 🎹 🎧 🎼';
    position: absolute;
    top: 0;
    right: 0;
    width: 200%;
    height: 100%;
    font-size: 2.5rem;
    color: rgba(252, 50, 1, 0.06);
    line-height: 3.0;
    letter-spacing: 2.0rem;
    word-spacing: 1.2rem;
    z-index: 1;
    pointer-events: none;
    transform: rotate(12deg);
    animation: float-bg-reverse 22s linear infinite;
}

@keyframes float-bg-reverse {
    0% { transform: translateX(0%) rotate(12deg); }
    100% { transform: translateX(-50%) rotate(12deg); }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    background: var(--bg-dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(14, 19, 43, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.15) translateY(-8px);
    z-index: 10;
    box-shadow: 0 25px 60px rgba(252, 50, 1, 0.5);
    border: 4px solid var(--accent);
}

.gallery-item img {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item img:hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

/* Gallery grid layout */
.gallery-item:nth-child(1) {
    grid-column: span 3;
    grid-row: span 3;
    aspect-ratio: 1;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}

.gallery-item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}

.gallery-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
}

.gallery-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
}

.gallery-item:nth-child(7) {
    grid-column: span 3;
    grid-row: span 1;
    aspect-ratio: 3/1;
}

.gallery-item:nth-child(10) {
    grid-column: span 3;
    grid-row: span 1;
    aspect-ratio: 3/1;
}

.gallery-item:nth-child(9) {
    grid-column: span 1;
    grid-row: span 2;
    aspect-ratio: 1/2;
}

/* === REVIEWS SECTION - NAPRAWIONA ANIMACJA === */
.reviews-section {
    background: var(--bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    min-height: 300px;
    overflow: hidden;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,.1);
    border: 3px solid #f0f0f0;
    
    /* KLUCZOWA ANIMACJA */
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px) scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease, visibility 0.8s ease;
    filter: blur(3px);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.review-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    border-color: #fc3201;
    filter: blur(0);
    z-index: 10;
}

.review-card.prev {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100px) scale(0.9);
    filter: blur(3px);
    z-index: 5;
}

.review-stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dot::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
}

.dot.active::after {
    background: var(--accent);
    transform: scale(1.3);
}

.dot:hover::after {
    background: var(--accent);
    transform: scale(1.1);
}

/* === CONTACT SECTION === */
.contact-section {
    background: var(--gradient-main);
    background-size: 400% 400%;
    padding: 80px 0;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradient-shift 6s ease-in-out infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ograniczone animacje emoji do 3 warstw */
.contact-section .emoji-wave-3::before {
    content: '🎪 🎭 🎨 🎸 🥳 🎉 🎈 🎁 🌟 💫 🎆 🎇 ⭐ 🔥 💥 🎵 ✨ 🎤';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250%;
    height: 120%;
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 3.5;
    letter-spacing: 2.5rem;
    z-index: 1;
    pointer-events: none;
    transform: rotate(25deg);
    animation: party-float-3 10s linear infinite;
}

.contact-section .emoji-wave-4::before {
    content: '🎮 🎲 🎺 🎻 🥁 🎹 🎧 🎼 🎯 🎬 🎊 🥳 🎉 🎈 🎁 🌟 💫 🎆';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 200%;
    height: 100%;
    font-size: 3.0rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 3.2;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-30deg);
    animation: party-float-4 14s linear infinite reverse;
}

.contact-section .emoji-wave-5::before {
    content: '🎇 ⭐ 🔥 💥 🎵 ✨ 🎤 🎪 🎭 🎨 🎸 🥳 🎮 🎲 🎺 🎻';
    position: absolute;
    top: -30%;
    left: 50%;
    width: 180%;
    height: 80%;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 3.0;
    z-index: 1;
    pointer-events: none;
    transform: rotate(45deg);
    animation: party-float-5 16s linear infinite;
}

@keyframes party-float-3 {
    0% { transform: translateY(100%) translateX(-20%) rotate(25deg) scale(0.9); }
    100% { transform: translateY(20%) translateX(-25%) rotate(25deg) scale(0.9); }
}

@keyframes party-float-4 {
    0% { transform: translateX(100%) translateY(-10%) rotate(-30deg) scale(1.1); }
    100% { transform: translateX(0%) translateY(-15%) rotate(-30deg) scale(1.1); }
}

@keyframes party-float-5 {
    0% { transform: translateY(-100%) translateX(20%) rotate(45deg) scale(0.8); }
    100% { transform: translateY(-20%) translateX(15%) rotate(45deg) scale(0.8); }
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(14, 19, 43, 0.2);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 50px auto 0;
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-align: center;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.form-field {
    position: relative;
}

/* NOWE LABELE DLA MOBILE */
.phone-label,
.date-label {
    display: none;
    position: absolute;
    top: -22px;
    left: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    z-index: 5;
}

@media (max-width: 768px) {
    .phone-label,
    .date-label {
        display: block;
    }
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(252, 50, 1, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    font-size: 16px; /* Zapobiega auto-zoom na iOS */
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(14, 19, 43, 0.6);
    font-weight: 400;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(252, 50, 1, 0.2);
    transform: translateY(-2px);
}

/* WALIDACJA TELEFONU */
.phone-error {
    display: none;
    position: absolute;
    bottom: -22px;
    left: 8px;
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    z-index: 5;
}

.form-field input:invalid + .phone-error {
    display: block;
}

.form-field input[type="tel"].error {
    border-color: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

/* Specjalne dla pola telefonu */
input[type="tel"] {
    letter-spacing: 0.5px;
}

.quick-submit-btn {
    background: var(--gradient-main);
    color: var(--text-light);
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    box-shadow: 0 8px 25px rgba(252, 50, 1, 0.3);
    animation: pulse-button 2s ease-in-out infinite;
}

@keyframes pulse-button {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(252, 50, 1, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(252, 50, 1, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(252, 50, 1, 0.3);
    }
}

.quick-submit-btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(252, 50, 1, 0.4);
    animation: none;
}

.form-note {
    text-align: center;
    color: var(--accent);
    font-weight: 600;
    margin-top: 15px;
    font-size: 0.95rem;
}

/* === FOOTER - POPRAWIONE CTA === */
.footer {
    background: white;
    color: #333;
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '🎉 🎊 🎈 🎁 🌟 💫 🎆 🎇 ⭐ 🔥 💥 🎵 ✨ 🎤 🎪 🎭 🎨 🎸 🥳 🎮 🎲 🎺 🎻 🥁 🎹 🎧 🎼';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    font-size: 2.0rem;
    color: rgba(252, 50, 1, 0.08);
    line-height: 2.8;
    letter-spacing: 1.8rem;
    word-spacing: 1.0rem;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-8deg);
    animation: float-bg 30s linear infinite;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.contact-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

/* NOWY GRANATOWY KOLOR DLA CTA */
.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(14, 19, 44, 0.4);
    outline: none;
    overflow: hidden;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #1a1f3a, #2a2f4a);
    box-shadow: 0 12px 35px rgba(14, 19, 44, 0.6);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--text-light);
}

/* === MODALS === */
.package-modal, .gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.package-modal-content {
    position: relative;
    max-width: 600px;
    max-height: 80vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(252, 50, 1, 0.4);
}

.package-modal-image {
    width: 100%;
    height: auto;
    display: block;
}

.package-close-btn, .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(252, 50, 1, 0.9);
    color: var(--text-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
}

.package-close-btn:hover, .close-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    text-align: center;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(252, 50, 1, 0.3);
}

.modal-info {
    color: var(--text-light);
    margin-top: 20px;
    padding: 0 20px;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent);
}

.modal-desc {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.image-counter {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.modal-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.nav-btn {
    background: var(--gradient-main);
    color: var(--text-light);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 100px;
}

.nav-btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .header {
        height: 80px;
    }
    
    .logo-img {
        width: 85%;
        max-width: 350px;
        transform: scale(1.0);
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .oferta, .galeria, .reviews-section {
        padding: 60px 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        justify-items: center;
    }
    
    .package-item {
        height: 280px;
        max-width: 350px;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        max-width: 100%;
        margin-top: 30px;
    }
    
    .gallery-item:hover {
        transform: scale(1.08) translateY(-4px);
    }
    
    .contact-info {
        gap: 50px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .reviews-slider {
        min-height: 350px;
    }
    
    .review-card {
        padding: 30px 25px;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    .review-stars {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-card {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .quick-submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .reviews-slider {
        min-height: 380px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
}

#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #2e3192 0%, #1bffff 100%);
  color: #fff;
  font-size: 1.1rem;
  padding: 18px 10px 16px 10px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.13);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: cookiepop 0.8s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes cookiepop {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

#cookie-banner .cookie-icon {
  font-size: 1.7em;
  margin-right: 8px;
}

#cookie-banner .cookie-link {
  color: #ffe082;
  text-decoration: underline;
  margin: 0 10px;
  font-weight: 600;
  transition: color 0.2s;
}
#cookie-banner .cookie-link:hover {
  color: #fff59d;
}

#cookie-ok {
  background: #ff4081;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 7px 22px;
  margin-left: 10px;
  font-size: 1.05em;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,64,129,0.13);
  transition: background 0.2s, color 0.2s;
}
#cookie-ok:hover {
  background: #fff;
  color: #ff4081;
}